Interface ModelService.WithRawResponse
-
- All Implemented Interfaces:
public interface ModelService.WithRawResponse
A view of ModelService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract HttpResponseFor<Model>
retrieve(ModelRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /models/{model}
, but is otherwise the same as ModelService.retrieve.abstract HttpResponseFor<Model>
retrieve(ModelRetrieveParams params)
Returns a raw HTTP response for get /models/{model}
, but is otherwise the same as ModelService.retrieve.abstract HttpResponseFor<ModelListPage>
list(ModelListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /models
, but is otherwise the same as ModelService.list.abstract HttpResponseFor<ModelListPage>
list(ModelListParams params)
Returns a raw HTTP response for get /models
, but is otherwise the same as ModelService.list.abstract HttpResponseFor<ModelListPage>
list()
Returns a raw HTTP response for get /models
, but is otherwise the same as ModelService.list.HttpResponseFor<ModelListPage>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /models
, but is otherwise the same as ModelService.list.abstract HttpResponseFor<ModelDeleted>
delete(ModelDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /models/{model}
, but is otherwise the same as ModelService.delete.abstract HttpResponseFor<ModelDeleted>
delete(ModelDeleteParams params)
Returns a raw HTTP response for delete /models/{model}
, but is otherwise the same as ModelService.delete.-
-
Method Detail
-
retrieve
abstract HttpResponseFor<Model> retrieve(ModelRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /models/{model}
, but is otherwise the same as ModelService.retrieve.
-
retrieve
abstract HttpResponseFor<Model> retrieve(ModelRetrieveParams params)
Returns a raw HTTP response for
get /models/{model}
, but is otherwise the same as ModelService.retrieve.
-
list
abstract HttpResponseFor<ModelListPage> list(ModelListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /models
, but is otherwise the same as ModelService.list.
-
list
abstract HttpResponseFor<ModelListPage> list(ModelListParams params)
Returns a raw HTTP response for
get /models
, but is otherwise the same as ModelService.list.
-
list
abstract HttpResponseFor<ModelListPage> list()
Returns a raw HTTP response for
get /models
, but is otherwise the same as ModelService.list.
-
list
HttpResponseFor<ModelListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /models
, but is otherwise the same as ModelService.list.
-
delete
abstract HttpResponseFor<ModelDeleted> delete(ModelDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /models/{model}
, but is otherwise the same as ModelService.delete.
-
delete
abstract HttpResponseFor<ModelDeleted> delete(ModelDeleteParams params)
Returns a raw HTTP response for
delete /models/{model}
, but is otherwise the same as ModelService.delete.
-
-
-
-