testNewInboxForwarderWithHttpInfo method
Future<Response>
testNewInboxForwarderWithHttpInfo(
- TestNewInboxForwarderOptions testNewInboxForwarderOptions
Test new inbox forwarder
Test new inbox forwarder
Note: This method returns the HTTP Response
.
Parameters:
- TestNewInboxForwarderOptions testNewInboxForwarderOptions (required):
Implementation
Future<Response> testNewInboxForwarderWithHttpInfo(TestNewInboxForwarderOptions testNewInboxForwarderOptions,) async {
// ignore: prefer_const_declarations
final path = r'/forwarders';
// ignore: prefer_final_locals
Object? postBody = testNewInboxForwarderOptions;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PATCH',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}