ListEmailMessagesInput
public struct ListEmailMessagesInput : Equatable
Input object for listing email messages using SudoEmailClient
-
Email messages matching the specified date range inclusive will be fetched.
Declaration
Swift
public let dateRange: EmailMessageDateRange?
-
Determines how the email address will be fetched. Default usage is
remoteOnly
.Declaration
Swift
public let cachePolicy: CachePolicy?
-
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?