ListEmailMessagesForEmailFolderIdInput
public struct ListEmailMessagesForEmailFolderIdInput : Equatable
input object for listing email messages for an email folder using SudoEmailClient
-
The unique identifier of email folder to retrieve messages for.
Declaration
Swift
public let emailFolderId: String -
Email messages matching the specified date range inclusive will be fetched.
Declaration
Swift
public let dateRange: EmailMessageDateRange? -
The direction in which the email messages are sorted. Defaults to descending.
Declaration
Swift
public let sortOrder: SortOrder? -
The number of items to return. If omitted, the default of 10 will be used.
Declaration
Swift
public let limit: Int? -
A pagination token generated by a previous call.
Declaration
Swift
public let nextToken: String? -
Whether to include deleted messages or not. Defaults to false.
Declaration
Swift
public let includeDeletedMessages: Bool? -
Declaration
Swift
public init( emailFolderId: String, dateRange: EmailMessageDateRange? = nil, sortOrder: SortOrder? = nil, limit: Int? = defaultEmailMessageLimit, nextToken: String? = nil, includeDeletedMessages: Bool? = false )
ListEmailMessagesForEmailFolderIdInput Structure Reference