getAttachmentMetaData method

Future<AttachmentMetaData?> getAttachmentMetaData(
  1. String emailId,
  2. String attachmentId
)

Get email attachment metadata. This is the contentType and contentLength of an attachment. To get the individual attachments use the downloadAttachment methods.

Returns the metadata such as name and content-type for a given attachment and email.

Parameters:

  • String emailId (required): ID of email

  • String attachmentId (required): ID of attachment

Implementation

Future<AttachmentMetaData?> getAttachmentMetaData(String emailId, String attachmentId,) async {
  final response = await getAttachmentMetaDataWithHttpInfo(emailId, attachmentId,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AttachmentMetaData',) as AttachmentMetaData;

  }
  return null;
}