restoreMissedEmailsWithHttpInfo method

Future<Response> restoreMissedEmailsWithHttpInfo()

Restore missed emails

If emails were missed due to a plan limit they are saved as missed emails. If support team enables the canRestore flag these emails can be reload into your account using this method.

Note: This method returns the HTTP Response.

Implementation

Future<Response> restoreMissedEmailsWithHttpInfo() async {
  // ignore: prefer_const_declarations
  final path = r'/missed-emails/restore';

  // ignore: prefer_final_locals
  Object? postBody;

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

  const contentTypes = <String>[];


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