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
ORoperator. - If specifying multiple fields to filter on (for example both
namesanduniqueCodes), fields are applied using anANDoperator.
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