rawNewInvoiceDelegationsWithHttpInfo method
Future<Response>
rawNewInvoiceDelegationsWithHttpInfo(
- String invoiceId,
- List<
DelegationDto> delegationDto
Adds a delegation to a invoice
Note: This method returns the HTTP Response
.
Parameters:
-
String invoiceId (required):
-
List<DelegationDto> delegationDto (required):
Implementation
Future<Response> rawNewInvoiceDelegationsWithHttpInfo(String invoiceId, List<DelegationDto> delegationDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/invoice/{invoiceId}/delegate'.replaceAll('{invoiceId}', invoiceId);
// ignore: prefer_final_locals
Object? postBody = delegationDto;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const authNames = <String>[r'basicSchema'];
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
authNames,
);
}