retrieveModelWithHttpInfo method

Future<Response> retrieveModelWithHttpInfo(
  1. String model
)

Retrieves a model instance, providing basic information about the model such as the owner and permissioning.

Note: This method returns the HTTP Response.

Parameters:

  • String model (required): The ID of the model to use for this request

Implementation

Future<Response> retrieveModelWithHttpInfo(String model,) async {
  // ignore: prefer_const_declarations
  final path = r'/models/{model}'
    .replaceAll('{model}', model);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}