INPUT_OBJECT
BankAccountCondition
A condition to be used against BankAccount object types. All fields are tested
for equality and combined with a logical ‘and.’
link GraphQL Schema definition
- input BankAccountCondition {
- # Checks for equality with the object’s `rowId` field.
- : UUID
- # Checks for equality with the object’s `clientCompanyRowId` field.
- : UUID
- # Checks for equality with the object’s `bankBic` field.
- : String
- # Checks for equality with the object’s `iban` field.
- : BankIban
- # Checks for equality with the object’s `accountNumber` field.
- : TrimmedText
- # Checks for equality with the object’s `type` field.
- : BankAccountType
- # Checks for equality with the object’s `name` field.
- : TrimmedText
- # Checks for equality with the object’s `holder` field.
- : TrimmedText
- # Checks for equality with the object’s `description` field.
- : TrimmedText
- # Checks for equality with the object’s `currency` field.
- : CurrencyCode
- # Checks for equality with the object’s `available` field.
- : Float
- # Checks for equality with the object’s `limit` field.
- : Float
- # Checks for equality with the object’s `balance` field.
- : Float
- # Checks for equality with the object’s `generalLedgerAccountRowId` field.
- : UUID
- # Checks for equality with the object’s `xs2AAccountRowId` field.
- : String
- # Checks for equality with the object’s `active` field.
- : Boolean
- # Checks for equality with the object’s `includeHolderWithPayment` field.
- : Boolean
- # Checks for equality with the object’s `updatedAt` field.
- : UpdatedTime
- # Checks for equality with the object’s `createdAt` field.
- : CreatedTime
- }