Skip to main content

PaymentTypeSearchFilterInput

Defines the payment type filter criteria used when searching for payments in EventsAir.

The following rules apply:

  • Where a field accepts a list of values as a filter, those values are applied using an OR operator.
  • If specifying multiple fields to filter on (for example both names and uniqueCodes), fields are applied using an AND operator.
input PaymentTypeSearchFilterInput {
fundingTypes: [PaymentFundingType!]
names: [String!]
uniqueCodes: [String!]
}

Fields

PaymentTypeSearchFilterInput.fundingTypes ● [PaymentFundingType!] list enum

Filter payments based on their funding types. Optional.

PaymentTypeSearchFilterInput.names ● [String!] list scalar

Filter payments based on their type names. Optional.

PaymentTypeSearchFilterInput.uniqueCodes ● [String!] list scalar

Filter payments based on their type unique codes. Optional.

Member Of

PaymentSearchFilterInput input