Options

public struct Options

Undocumented

  • Number of the page that should be returned (sometimes referred to as “offset”). Page 0 is the first page.

    Declaration

    Swift

    public var pagenumber: Int?
  • Page size of the currently returned page (sometimes referred to as “limit”).

    Declaration

    Swift

    public var pagesize: Int?
  • Sort by given attribute, plus and minus are used to indicate ascending and descending order.

    Declaration

    Swift

    public var sort: PCPaySort?
  • ID of the payment transaction

    Declaration

    Swift

    public var filterid: String?
  • Time the transaction was created.

    Declaration

    Swift

    public var filtercreatedAt: DateTime?
  • Time the transaction was last updated.

    Declaration

    Swift

    public var filterupdatedAt: DateTime?
  • Payment method ID of the transaction.

    Declaration

    Swift

    public var filterpaymentMethodId: ID?
  • Payment method kind of the transaction.

    Declaration

    Swift

    public var filterpaymentMethodKind: String?
  • PACE resource name of the resource, for which the payment was authorized.

    Declaration

    Swift

    public var filterpurposePRN: String?
  • PACE resource name - referring to the transaction purpose with provider details.

    Declaration

    Swift

    public var filterproviderPRN: String?
  • Product name of the fuel that was used in the transaction.

    Declaration

    Swift

    public var filterfuelProductName: String?
  • Fuel type which was used in the transaction.

    Declaration

    Swift

    public var filterfuelType: String?
  • Undocumented

    Declaration

    Swift

    public init(pagenumber: Int? = nil, pagesize: Int? = nil, sort: PCPaySort? = nil, filterid: String? = nil, filtercreatedAt: DateTime? = nil, filterupdatedAt: DateTime? = nil, filterpaymentMethodId: ID? = nil, filterpaymentMethodKind: String? = nil, filterpurposePRN: String? = nil, filterproviderPRN: String? = nil, filterfuelProductName: String? = nil, filterfuelType: String? = nil)