ChecksQuery

public struct ChecksQuery

The checks query model.

  • Start date for list entity.

    Declaration

    Swift

    public let startDate: String?
  • End date for list entity.

    Declaration

    Swift

    public let endDate: String?
  • The number of items per page.

    Declaration

    Swift

    public let limit: Int?
  • Start after offset amount of items.

    Declaration

    Swift

    public let offset: Int?
  • Auxiliary constructor

    Declaration

    Swift

    public init(
        startDate: String? = nil,
        endDate: String? = nil,
        limit: Int? = nil,
        offset: Int? = nil)

    Parameters

    startDate

    Start date for list entity.

    endDate

    End date for list entity.

    limit

    The number of items per page.

    offset

    Start after offset amount of items.