IncentivesQuery

public struct IncentivesQuery

Incentives query model.

  • The number of items per page.

    Declaration

    Swift

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

    Declaration

    Swift

    public var offset: Int?
  • Filter by scope.

    Declaration

    Swift

    public var scope: IncentiveScope?
  • Filter by type.

    Declaration

    Swift

    public var type: IncentiveType?
  • Incentives query model constructor.

    Declaration

    Swift

    public init(
        limit: Int? = nil,
        offset: Int? = nil,
        scope: IncentiveScope? = nil,
        type: IncentiveType? = nil)

    Parameters

    limit

    The number of items per page.

    offset

    Start after offset amount of items.

    scope

    Filter by scope.

    type

    Filter by type.