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
startLimits the search to a specific start time for the event.
endLimits the search to a specific end time for the event.
pageA
Pageinstance to limit the search to a specific page. Thelimitvalue cannot exceed 500. If not specified, the limit will be set to 500 and the offset will be set to 0.
View on GitHub
SuppressionListReaderParameters Structure Reference