SuppressionListReaderParameters
public struct SuppressionListReaderParameters : Codable
The SuppressionListReaderParameters
serves as the parameters used by the
get suppressions
API calls.
-
The date to start looking for events.
Declaration
Swift
public let startDate: Date?
-
The date to stop looking for events.
Declaration
Swift
public let endDate: Date?
-
The page of results to look for.
Declaration
Swift
public let page: Page?
-
Initializes the struct.
Declaration
Swift
public init(start: Date?, end: Date?, page: Page?)
Parameters
start
Limits the search to a specific start time for the event.
end
Limits the search to a specific end time for the event.
page
A
Page
instance to limit the search to a specific page. Thelimit
value cannot exceed 500. If not specified, the limit will be set to 500 and the offset will be set to 0.