generateDmarcRecordWithHttpInfo method

Future<Response> generateDmarcRecordWithHttpInfo(
  1. GenerateDmarcRecordOptions generateDmarcRecordOptions
)

Create a DMARC record policy

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> generateDmarcRecordWithHttpInfo(GenerateDmarcRecordOptions generateDmarcRecordOptions,) async {
  // ignore: prefer_const_declarations
  final path = r'/tools/generate-dmarc-record';

  // ignore: prefer_final_locals
  Object? postBody = generateDmarcRecordOptions;

  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,
  );
}