createEditWithHttpInfo method
Creates a new edit for the provided input, instruction, and parameters
Note: This method returns the HTTP Response.
Parameters:
- CreateEditRequest createEditRequest (required):
Implementation
Future<Response> createEditWithHttpInfo(CreateEditRequest createEditRequest,) async {
// ignore: prefer_const_declarations
final path = r'/edits';
// ignore: prefer_final_locals
Object? postBody = createEditRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}