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.
  • rowId: UUID
  • # Checks for equality with the object’s `clientCompanyRowId` field.
  • clientCompanyRowId: UUID
  • # Checks for equality with the object’s `bankBic` field.
  • bankBic: String
  • # Checks for equality with the object’s `iban` field.
  • iban: BankIban
  • # Checks for equality with the object’s `accountNumber` field.
  • accountNumber: TrimmedText
  • # Checks for equality with the object’s `type` field.
  • type: BankAccountType
  • # Checks for equality with the object’s `name` field.
  • name: TrimmedText
  • # Checks for equality with the object’s `holder` field.
  • holder: TrimmedText
  • # Checks for equality with the object’s `description` field.
  • description: TrimmedText
  • # Checks for equality with the object’s `currency` field.
  • currency: CurrencyCode
  • # Checks for equality with the object’s `available` field.
  • available: Float
  • # Checks for equality with the object’s `limit` field.
  • limit: Float
  • # Checks for equality with the object’s `balance` field.
  • balance: Float
  • # Checks for equality with the object’s `generalLedgerAccountRowId` field.
  • generalLedgerAccountRowId: UUID
  • # Checks for equality with the object’s `xs2AAccountRowId` field.
  • xs2AAccountRowId: String
  • # Checks for equality with the object’s `active` field.
  • active: Boolean
  • # Checks for equality with the object’s `includeHolderWithPayment` field.
  • includeHolderWithPayment: Boolean
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }