From 0257c6e80990275e2c609ca0cd35a70b59818c4c Mon Sep 17 00:00:00 2001 From: bloodyowl Date: Fri, 22 Mar 2024 14:52:12 +0100 Subject: [PATCH] Add types --- .gitignore | 2 +- example/graphql-env.d.ts | 50815 +++++++++++++++++++++++++++++++++++++ 2 files changed, 50816 insertions(+), 1 deletion(-) create mode 100644 example/graphql-env.d.ts diff --git a/.gitignore b/.gitignore index 4bd628f..396a3da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .DS_Store .DS_Store? node_modules/ -example/graphql-env.d.ts +# example/graphql-env.d.ts .env docs/node_modules/ .docusaurus diff --git a/example/graphql-env.d.ts b/example/graphql-env.d.ts new file mode 100644 index 0000000..1d48783 --- /dev/null +++ b/example/graphql-env.d.ts @@ -0,0 +1,50815 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "Account", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "number", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "holder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cashAccountType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CashAccountType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentLevel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentLevel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "BIC", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "blockSDD", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "AccountStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "partnershipStatusInfo", + "type": { + "kind": "INTERFACE", + "name": "PartnershipStatusInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "virtualIbanEntries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntryConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "memberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembershipConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipsFilterInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "requiredConsentToFetchNewTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountLanguage", + "ofType": null + } + }, + "args": [] + }, + { + "name": "legalRepresentativeMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentAccountType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentAccountType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "upgradedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "bankDetails", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "legalDocuments", + "type": { + "kind": "OBJECT", + "name": "LegalDocumentConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "LegalDocumentsFilterInput", + "ofType": null + } + } + ] + }, + { + "name": "balances", + "type": { + "kind": "OBJECT", + "name": "AccountBalances", + "ofType": null + }, + "args": [] + }, + { + "name": "statements", + "type": { + "kind": "OBJECT", + "name": "StatementConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "StatementFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "invoices", + "type": { + "kind": "OBJECT", + "name": "InvoiceConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "receivedDirectDebitMandates", + "type": { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountReceivedDirectDebitOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountReceivedDirectDebitMandateFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "merchantProfiles", + "type": { + "kind": "OBJECT", + "name": "MerchantProfileConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "MerchantProfileOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "MerchantProfileFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "standingOrders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StandingOrderConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStandingOrderOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStandingOrderFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "fundingSources", + "type": { + "kind": "OBJECT", + "name": "FundingSourceConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingSourceOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "FundingSourceFiltersInput", + "ofType": null + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "ID" + }, + { + "kind": "SCALAR", + "name": "String" + }, + { + "kind": "SCALAR", + "name": "Boolean" + }, + { + "kind": "SCALAR", + "name": "Int" + }, + { + "kind": "OBJECT", + "name": "AccountAndCard", + "fields": [ + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardRequested", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountBalances", + "fields": [ + { + "name": "available", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pending", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "booked", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reserved", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountClosedStatus", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CloseAccountStatusReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountClosingStatus", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CloseAccountStatusReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountCountry", + "enumValues": [ + { + "name": "FRA" + }, + { + "name": "DEU" + }, + { + "name": "ESP" + }, + { + "name": "NLD" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountFilterInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + } + } + }, + { + "name": "paymentLevels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentLevel", + "ofType": null + } + } + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountFundingLimitsReachedReason", + "enumValues": [ + { + "name": "InstantFundingLimitExceededRejection" + }, + { + "name": "FundingLimitExceededRejection" + }, + { + "name": "ProjectInstantFundingLimitExceededRejection" + }, + { + "name": "ProjectFundingLimitExceededRejection" + }, + { + "name": "GlobalInstantFundingLimitExceededRejection" + }, + { + "name": "GlobalFundingLimitExceededRejection" + }, + { + "name": "InsufficientFundsRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolder", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "verificationStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "VerificationStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "info", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "AccountHolderInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "INTERFACE", + "name": "AccountHolderStatusInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "residencyAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AddressInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accounts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "supportingDocumentCollections", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "fundingLimitSettingsChangeRequests", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "onboarding", + "type": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + }, + "args": [] + }, + { + "name": "externalAccounts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "paymentMandates", + "type": { + "kind": "OBJECT", + "name": "PaymentMandateConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentMandateOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentMandateFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "fundingLimitSettings", + "type": { + "kind": "OBJECT", + "name": "FundingLimitSettings", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountHolderCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountHolderStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderCompanyInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "registrationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "companyRegistrationDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "companyType", + "type": { + "kind": "ENUM", + "name": "CompanyType", + "ofType": null + }, + "args": [] + }, + { + "name": "businessActivity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BusinessActivity", + "ofType": null + } + }, + "args": [] + }, + { + "name": "businessActivityDescription", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "monthlyPaymentVolume", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MonthlyPaymentVolume", + "ofType": null + } + }, + "args": [] + }, + { + "name": "individualUltimateBeneficialOwners", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwner", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "legalRepresentativePersonalAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInformation", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountHolderInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolderEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountHolderStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountHolderFilterInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderStatus", + "ofType": null + } + } + } + }, + { + "name": "types", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + } + } + }, + { + "name": "verificationStatus", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "VerificationStatus", + "ofType": null + } + } + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "registrationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderIndividualInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "employmentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "EmploymentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "monthlyIncome", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MonthlyIncome", + "ofType": null + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountHolderInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountHolderInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountHolderCompanyInfo" + }, + { + "kind": "OBJECT", + "name": "AccountHolderIndividualInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountHolderOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountHolderOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "AccountHolderOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountHolderStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountHolderStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountHolderCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountHolderEnabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountHolderSuspendedStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderSuspendedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountHolderStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountHolderType", + "enumValues": [ + { + "name": "Individual" + }, + { + "name": "Company" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountHolderTypeIndividualRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountLanguage", + "enumValues": [ + { + "name": "de" + }, + { + "name": "en" + }, + { + "name": "fr" + }, + { + "name": "it" + }, + { + "name": "nl" + }, + { + "name": "es" + }, + { + "name": "pt" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembership", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "legalRepresentative", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canViewAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canManageCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "spendingLimits", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SpendingLimit", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "residencyAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "acceptedIdentificationLevels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "recommendedIdentificationLevel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "hasRequiredIdentificationLevel", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "disabledAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "spending", + "type": { + "kind": "OBJECT", + "name": "Spending", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipBindingUserErrorStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "firstNameMatchError", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "idVerifiedMatchError", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastNameMatchError", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "phoneNumberMatchError", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "birthDateMatchError", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "restrictedTo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "RestrictedTo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeDisabledRejection", + "fields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeUpdatedRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembershipEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + }, + { + "name": "restrictedTo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "RestrictedTo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipDisabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipInvitationSentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "restrictedTo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "RestrictedTo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotReadyToBeBoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountMembershipOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "AccountMembershipOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipsFilterInput", + "inputFields": [ + { + "name": "canManageCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canViewAccount", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + } + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountMembershipsPermission", + "enumValues": [ + { + "name": "canInitiatePayments" + }, + { + "name": "canManageAccountMembership" + }, + { + "name": "canManageCards" + }, + { + "name": "canManageBeneficiaries" + }, + { + "name": "canViewAccount" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "InvitationSent" + }, + { + "name": "BindingUserError" + }, + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Disabled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountMembershipBindingUserErrorStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipDisabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipEnabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipInvitationSentStatusInfo" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipSuspendedStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountMembershipSuspendedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountMembershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountNotEligibleRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "SCALAR", + "name": "AccountNumber" + }, + { + "kind": "OBJECT", + "name": "AccountOpenedStatus", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "AccountOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountReceivedDirectDebitMandateFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + } + } + }, + { + "name": "scheme", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateScheme", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountReceivedDirectDebitOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountReceivedDirectDebitOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "AccountReceivedDirectDebitOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountStandingOrderFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderStatus", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountStandingOrderOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AccountStandingOrderOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "AccountStandingOrderOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "AccountStatus", + "enumValues": [ + { + "name": "Opened" + }, + { + "name": "Suspended" + }, + { + "name": "Closing" + }, + { + "name": "Closed" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountClosedStatus" + }, + { + "kind": "OBJECT", + "name": "AccountClosingStatus" + }, + { + "kind": "OBJECT", + "name": "AccountOpenedStatus" + }, + { + "kind": "OBJECT", + "name": "AccountSuspendedStatus" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountSuspendedStatus", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "SuspendAccountStatusReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountVerification", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DirectDebitAccountVerification" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountVerificationAlreadyRejectedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "enumValues": [ + { + "name": "PendingVerification" + }, + { + "name": "PendingReview" + }, + { + "name": "Verified" + }, + { + "name": "Rejected" + } + ] + }, + { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PendingReviewStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingVerificationStatusInfo" + }, + { + "kind": "OBJECT", + "name": "RejectedVerificationStatusInfo" + }, + { + "kind": "OBJECT", + "name": "VerifiedStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "AccountVerificationWrongStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ActionNotAllowedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ActivatePhysicalCardInput", + "inputFields": [ + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ActivatePhysicalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ActivatePhysicalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "CannotActivatePhysicalCardRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ActivatePhysicalCardSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + }, + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ActiveMerchantPaymentLinkStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentLinkStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiresAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentLinkStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddAccountMembershipInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "restrictedTo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RestrictedToInput", + "ofType": null + } + } + }, + { + "name": "canViewAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidPhoneNumberRejection" + }, + { + "kind": "OBJECT", + "name": "PermissionCannotBeGrantedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddAccountMembershipsInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "memberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipInfoInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddAccountMembershipsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddAccountMembershipsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidPhoneNumberRejection" + }, + { + "kind": "OBJECT", + "name": "PermissionCannotBeGrantedRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddAccountMembershipsSuccessPayload", + "fields": [ + { + "name": "accountMemberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddAccountMembershipSuccessPayload", + "fields": [ + { + "name": "accountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCardInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "cardContractExpiryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "withdrawal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "international", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "nonMainCurrencyTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "eCommerce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "viewCardNumber", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "cardProductId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCardsInput", + "inputFields": [ + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CardConfigInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "cardProductId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddCardsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddCardsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AddingCardsToDifferentAccountsRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductNotApplicableToPhysicalCardsRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddCardsSuccessPayload", + "fields": [ + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddCardSuccessPayload", + "fields": [ + { + "name": "card", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCardsWithGroupDeliveryInput", + "inputFields": [ + { + "name": "groupDeliveryAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressWithContactInput", + "ofType": null + } + } + }, + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CardConfigWithGroupDeliveryInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "cardProductId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddCardsWithGroupDeliveryPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddCardsWithGroupDeliverySuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AddingCardsToDifferentAccountsRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductNotApplicableToPhysicalCardsRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddCardsWithGroupDeliverySuccessPayload", + "fields": [ + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDigitalCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "walletProvider", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "WalletProviderType", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddDigitalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddDigitalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardCanNotBeDigitalizedRejection" + }, + { + "kind": "OBJECT", + "name": "ApplePayNotAllowedForProjectRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddDigitalCardSuccessPayload", + "fields": [ + { + "name": "digitalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PendingDigitalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddDirectDebitFundingSourceInput", + "inputFields": [ + { + "name": "scheme", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPADirectDebitScheme", + "ofType": null + } + } + }, + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddDirectDebitFundingSourcePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddDirectDebitFundingSourceSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountVerificationAlreadyRejectedRejection" + }, + { + "kind": "OBJECT", + "name": "IBANNotReachableRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddDirectDebitFundingSourceSuccessPayload", + "fields": [ + { + "name": "fundingSource", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingSource", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddExternalAccountBalanceInput", + "inputFields": [ + { + "name": "externalAccountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "ofType": null + } + } + }, + { + "name": "lastChangedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddExternalAccountBalancePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddExternalAccountBalanceSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountBalanceAlreadyExistsRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddExternalAccountBalanceSuccessPayload", + "fields": [ + { + "name": "externalAccountBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountBalance", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddExternalAccountInput", + "inputFields": [ + { + "name": "accountHolderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "externalId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "cashAccountType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CashAccountType", + "ofType": null + } + } + }, + { + "name": "BIC", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "BIC", + "ofType": null + } + } + }, + { + "name": "IBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + } + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + } + }, + { + "name": "holderName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + }, + { + "name": "originalCreatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + { + "name": "usage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountUsage", + "ofType": null + } + } + }, + { + "name": "source", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "balances", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExternalAccountBalanceInput", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddExternalAccountPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddExternalAccountSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "IbanValidationRejection" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountAlreadyExistsRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddExternalAccountSuccessPayload", + "fields": [ + { + "name": "externalAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddFundingLimitSettingsChangeRequestInput", + "inputFields": [ + { + "name": "instantFundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FundingLimitAmountInput", + "ofType": null + } + } + }, + { + "name": "fundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FundingLimitAmountInput", + "ofType": null + } + } + }, + { + "name": "accountHolderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddFundingLimitSettingsChangeRequestPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddFundingLimitSettingsChangeRequestSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestBadAmountRejection" + }, + { + "kind": "OBJECT", + "name": "AccountHolderNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddFundingLimitSettingsChangeRequestSuccessPayload", + "fields": [ + { + "name": "fundingLimitSettingsChangeRequest", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequest", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddingCardsToDifferentAccountsRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddInternalDirectDebitPaymentMandateInput", + "inputFields": [ + { + "name": "paymentMethodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "sequence", + "type": { + "kind": "ENUM", + "name": "InternalDirectDebitSequence", + "ofType": null + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "MandateLanguage", + "ofType": null + } + }, + { + "name": "debtorAccountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddInternalDirectDebitPaymentMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddInternalDirectDebitPaymentMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountClosedRejection" + }, + { + "kind": "OBJECT", + "name": "SchemeWrongRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateReferenceAlreadyUsedRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddInternalDirectDebitPaymentMandateSuccessPayload", + "fields": [ + { + "name": "paymentMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalPaymentDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddMerchantProfileInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "merchantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "merchantWebsite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "merchantLogo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "productType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProductType", + "ofType": null + } + } + }, + { + "name": "expectedMonthlyPaymentVolume", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "expectedAverageBasket", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddMerchantProfilePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddMerchantProfileSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddMerchantProfileSuccessPayload", + "fields": [ + { + "name": "merchantProfile", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MerchantProfile", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrUpdateExternalAccountBalanceInput", + "inputFields": [ + { + "name": "externalAccountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "ofType": null + } + } + }, + { + "name": "lastChangedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddOrUpdateExternalAccountBalancePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddOrUpdateExternalAccountBalanceSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddOrUpdateExternalAccountBalanceSuccessPayload", + "fields": [ + { + "name": "externalAccountBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountBalance", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddReceivedInternalDirectDebitB2bMandateInput", + "inputFields": [ + { + "name": "paymentMandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddReceivedInternalDirectDebitB2bMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddReceivedInternalDirectDebitB2bMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountHolderTypeIndividualRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddReceivedInternalDirectDebitB2bMandateSuccessPayload", + "fields": [ + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddReceivedSepaDirectDebitB2bMandateInput", + "inputFields": [ + { + "name": "mandateReference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "creditorIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "creditorName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPAReceivedDirectDebitMandateSequence", + "ofType": null + } + } + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AddReceivedSepaDirectDebitB2bMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddReceivedSepaDirectDebitB2bMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountHolderTypeIndividualRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddReceivedSepaDirectDebitB2bMandateSuccessPayload", + "fields": [ + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Address", + "fields": [ + { + "name": "addressLine1", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "postalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressInfo", + "fields": [ + { + "name": "addressLine1", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "postalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddressInformation", + "fields": [ + { + "name": "addressLine1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "city", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + }, + { + "name": "postalCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddressInformationInput", + "inputFields": [ + { + "name": "addressLine1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + }, + { + "name": "postalCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "inputFields": [ + { + "name": "addressLine1", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "postalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddSepaDirectDebitPaymentMandateInput", + "inputFields": [ + { + "name": "paymentMethodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DirectDebitSequence", + "ofType": null + } + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MandateLanguage", + "ofType": null + } + } + }, + { + "name": "signatureDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SepaPaymentMandateDebtorInput", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddSepaDirectDebitPaymentMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddSepaDirectDebitPaymentMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountClosedRejection" + }, + { + "kind": "OBJECT", + "name": "SchemeWrongRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateReferenceAlreadyUsedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMethodNotCompatibleRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddSepaDirectDebitPaymentMandateSuccessPayload", + "fields": [ + { + "name": "paymentMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SEPAPaymentDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddSingleUseVirtualCardInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "viewCardNumber", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "cardProductId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddSingleUseVirtualCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardSuccessForUserPayload" + }, + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardSuccessForProjectOwnerPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddSingleUseVirtualCardsInput", + "inputFields": [ + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SingleUseVirtualCardConfigInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "cardProductId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "AddSingleUseVirtualCardsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AddingCardsToDifferentAccountsRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardsSuccessPayload", + "fields": [ + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardSuccessForProjectOwnerPayload", + "fields": [ + { + "name": "card", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + }, + { + "name": "confidential", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardConfidential", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AddSingleUseVirtualCardSuccessForUserPayload", + "fields": [ + { + "name": "card", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "AddVirtualIbanEntryPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddVirtualIbanEntrySuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AddVirtualIbanEntrySuccessPayload", + "fields": [ + { + "name": "virtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AddVirtualIbanInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "AllowedValue", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AllowSddInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AllowSddPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AllowSddSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AllowSddSuccessPayload", + "fields": [ + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AllowSddVirtualIbanEntryInput", + "inputFields": [ + { + "name": "ibanEntryId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "AllowSddVirtualIbanEntryPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AllowSddVirtualIbanEntrySuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "AllowSddVirtualIbanEntrySuccessPayload", + "fields": [ + { + "name": "virtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "AlreadyValidPhysicalCardRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "AmlRiskLevel", + "enumValues": [ + { + "name": "Low" + }, + { + "name": "Medium" + }, + { + "name": "High" + }, + { + "name": "TooHigh" + } + ] + }, + { + "kind": "OBJECT", + "name": "Amount", + "fields": [ + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AmountValue", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "inputFields": [ + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AmountValue", + "ofType": null + } + } + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + } + } + ] + }, + { + "kind": "SCALAR", + "name": "AmountValue" + }, + { + "kind": "OBJECT", + "name": "ApplePayNotAllowedForProjectRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ApprovedFundingLimit", + "fields": [ + { + "name": "instantFundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitAmount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitAmount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "AuditId" + }, + { + "kind": "OBJECT", + "name": "Authenticator", + "fields": [ + { + "name": "os", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "brand", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AuthenticatorType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "userAgent", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "acceptLanguage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "AuthenticatorType", + "enumValues": [ + { + "name": "SwanWeb" + }, + { + "name": "Swan" + } + ] + }, + { + "kind": "SCALAR", + "name": "AuthorizationId" + }, + { + "kind": "ENUM", + "name": "AuthorizationType", + "enumValues": [ + { + "name": "Classic" + }, + { + "name": "PreAuthorization" + }, + { + "name": "DataRequest" + } + ] + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "Balance", + "fields": [ + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + }, + { + "name": "balances", + "type": { + "kind": "OBJECT", + "name": "AccountBalances", + "ofType": null + }, + "args": [] + }, + { + "name": "lastSctOut", + "type": { + "kind": "OBJECT", + "name": "SEPACreditTransferTransaction", + "ofType": null + }, + "args": [] + }, + { + "name": "lastSctIn", + "type": { + "kind": "OBJECT", + "name": "SEPACreditTransferTransaction", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Bank", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "branch", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "nationalId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bic", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "BIC", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "Beneficiary", + "fields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "isMyOwnIban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalBeneficiary" + }, + { + "kind": "OBJECT", + "name": "SEPABeneficiary" + } + ] + }, + { + "kind": "ENUM", + "name": "BeneficiaryAccountHolderType", + "enumValues": [ + { + "name": "Individual" + }, + { + "name": "Company" + }, + { + "name": "Unknown" + } + ] + }, + { + "kind": "ENUM", + "name": "BeneficiaryAccountStatus", + "enumValues": [ + { + "name": "Active" + }, + { + "name": "Inactive" + }, + { + "name": "Unknown" + } + ] + }, + { + "kind": "OBJECT", + "name": "BeneficiaryMatch", + "fields": [ + { + "name": "accountStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolderType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountHolderType", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "BeneficiaryMismatch", + "fields": [ + { + "name": "accountStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolderType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "nameSuggestion", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accountHolderResidencyCity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "BeneficiaryTypo", + "fields": [ + { + "name": "accountStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolderType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "BeneficiaryAccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "nameSuggestion", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "BeneficiaryVerificationInput", + "inputFields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "debtorAccountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "BeneficiaryVerificationResult", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BeneficiaryMatch" + }, + { + "kind": "OBJECT", + "name": "BeneficiaryTypo" + }, + { + "kind": "OBJECT", + "name": "BeneficiaryMismatch" + }, + { + "kind": "OBJECT", + "name": "InvalidBeneficiaryVerification" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "IbanValidationRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ActionNotAllowedRejection" + } + ] + }, + { + "kind": "SCALAR", + "name": "BIC" + }, + { + "kind": "INPUT_OBJECT", + "name": "BindAccountMembershipInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "BindAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BindAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotReadyToBeBoundRejection" + }, + { + "kind": "OBJECT", + "name": "IdentityAlreadyBindToAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "RestrictedToUserRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "BindAccountMembershipSuccessPayload", + "fields": [ + { + "name": "accountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "BookedTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "valueDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "BusinessActivity", + "enumValues": [ + { + "name": "AdministrativeServices" + }, + { + "name": "Agriculture" + }, + { + "name": "Arts" + }, + { + "name": "BusinessAndRetail" + }, + { + "name": "Construction" + }, + { + "name": "Education" + }, + { + "name": "ElectricalDistributionAndWaterSupply" + }, + { + "name": "FinancialAndInsuranceOperations" + }, + { + "name": "Health" + }, + { + "name": "Housekeeping" + }, + { + "name": "InformationAndCommunication" + }, + { + "name": "LodgingAndFoodServices" + }, + { + "name": "ManufacturingAndMining" + }, + { + "name": "Other" + }, + { + "name": "PublicAdministration" + }, + { + "name": "RealEstate" + }, + { + "name": "ScientificActivities" + }, + { + "name": "Transportation" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelCardSuccessPayload", + "fields": [ + { + "name": "card", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelConsentInput", + "inputFields": [ + { + "name": "consentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelConsentPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelConsentSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ConsentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "NotReachableConsentStatusRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelConsentSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelDigitalCardInput", + "inputFields": [ + { + "name": "digitalCardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelDigitalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelDigitalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "DigitalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelDigitalCardSuccessPayload", + "fields": [ + { + "name": "digitalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "DigitalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "CanceledFundingSourceReason", + "enumValues": [ + { + "name": "UserCanceled" + }, + { + "name": "MandateExpired" + }, + { + "name": "MandateCanceled" + } + ] + }, + { + "kind": "OBJECT", + "name": "CanceledFundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CanceledFundingSourceReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CanceledIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CanceledMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CanceledMerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CanceledTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelFundingSourceInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelFundingSourcePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelFundingSourceSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelFundingSourceSuccessPayload", + "fields": [ + { + "name": "fundingSource", + "type": { + "kind": "INTERFACE", + "name": "FundingSource", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelPhysicalCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CancelPhysicalCardReason", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelPhysicalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelPhysicalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "ENUM", + "name": "CancelPhysicalCardReason", + "enumValues": [ + { + "name": "NonReceived" + }, + { + "name": "Lost" + }, + { + "name": "Stolen" + }, + { + "name": "Defected" + }, + { + "name": "Blocked" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelPhysicalCardSuccessPayload", + "fields": [ + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelStandingOrderInput", + "inputFields": [ + { + "name": "standingOrderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelStandingOrderPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelStandingOrderSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "StandingOrderNotFoundRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelStandingOrderSuccessPayload", + "fields": [ + { + "name": "standingOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StandingOrder", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelTransactionInput", + "inputFields": [ + { + "name": "transactionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelTransactionPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelTransactionSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelTransactionSuccessPayload", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CancelVirtualIbanEntryInput", + "inputFields": [ + { + "name": "virtualIbanEntryId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CancelVirtualIbanEntryPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CancelVirtualIbanEntrySuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CancelVirtualIbanEntrySuccessPayload", + "fields": [ + { + "name": "virtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CannotActivatePhysicalCardRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "shareholders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Shareholder", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "totalCapitalDepositAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "companyName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "companyOnboarding", + "type": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + }, + "args": [] + }, + { + "name": "companyAccountId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositCaseStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "documents", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositDocument", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositCaseConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositCaseEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositCaseEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CapitalDepositCaseFiltersInput", + "inputFields": [ + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositCaseStatus", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "CapitalDepositCaseOrderByFieldInput", + "enumValues": [ + { + "name": "id" + }, + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CapitalDepositCaseOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "CapitalDepositCaseOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "CapitalDepositCaseStatus", + "enumValues": [ + { + "name": "Initiated" + }, + { + "name": "WaitingForRequirements" + }, + { + "name": "WaitingForShareDepositCertificate" + }, + { + "name": "WaitingForRegisterExtract" + }, + { + "name": "WaitingForNotaryTransfer" + }, + { + "name": "Completed" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "downloadUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "uploadedAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "relatedCapitalDepositCase", + "type": { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "ofType": null + }, + "args": [] + }, + { + "name": "relatedShareholder", + "type": { + "kind": "OBJECT", + "name": "Shareholder", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploaded", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploadedRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentRefusedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentReasonCode", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "enumValues": [ + { + "name": "Pending" + }, + { + "name": "Uploaded" + }, + { + "name": "Validated" + }, + { + "name": "Refused" + } + ] + }, + { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentRefusedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentUploadedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentValidatedStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "CapitalDepositDocumentType", + "enumValues": [ + { + "name": "ArticlesOfIncorporation" + }, + { + "name": "RegisterExtract" + }, + { + "name": "ProofOfIdentity" + }, + { + "name": "CorporateIncomeTaxReturn" + }, + { + "name": "ProofOfIndividualAddress" + }, + { + "name": "CompanyLeaseAgreement" + }, + { + "name": "CapitalShareDepositCertificate" + }, + { + "name": "PowerOfAttorney" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentUploadedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentValidatedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CapitalDepositDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CapitalDepositDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "Card", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + }, + { + "name": "mainCurrency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardContractExpiryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "cardDesignUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "CardStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "withdrawal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "international", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "nonMainCurrencyTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "eCommerce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "spendingLimits", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SpendingLimit", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "physicalCard", + "type": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + }, + "args": [] + }, + { + "name": "cardMaskedNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issuingCountry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + }, + { + "name": "digitalCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalCardConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "DigitalCardOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "DigitalCardFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "spending", + "type": { + "kind": "OBJECT", + "name": "Spending", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "CardAuthorizationOutcome", + "enumValues": [ + { + "name": "Accepted" + }, + { + "name": "AccountClosed" + }, + { + "name": "AccountSuspended" + }, + { + "name": "AtmWithdrawalAmountLimitExceeded" + }, + { + "name": "AtmWithdrawalNumberLimitExceeded" + }, + { + "name": "AuthorizationConsumed" + }, + { + "name": "AuthorizationUpdated" + }, + { + "name": "AuthorizationValidityExceeded" + }, + { + "name": "CardCanceled" + }, + { + "name": "CardExpired" + }, + { + "name": "CardholderCancelation" + }, + { + "name": "CardLost" + }, + { + "name": "CardNotProvidedToCardholderOrClosed" + }, + { + "name": "CardNumberInvalid" + }, + { + "name": "CardOpposedCardStolen" + }, + { + "name": "CardOutOfOrder" + }, + { + "name": "CardTemporarilyLocked" + }, + { + "name": "CardUnknown" + }, + { + "name": "DoNotHonor" + }, + { + "name": "eMoneyAccount" + }, + { + "name": "eMoneyAccountLimitExceeded" + }, + { + "name": "IncorrectPinCodeAttemptsExceeded" + }, + { + "name": "InsufficientFunds" + }, + { + "name": "MerchantInvalid" + }, + { + "name": "MerchantShouldResubmitAuthorization" + }, + { + "name": "MiscellaneousReason" + }, + { + "name": "OriginalTransactionNotFound" + }, + { + "name": "PartialApproval" + }, + { + "name": "PartialCancelation" + }, + { + "name": "PeriodAmountLimitExceeded" + }, + { + "name": "PeriodNumberTransactionLimitExceeded" + }, + { + "name": "PinCodeInvalid" + }, + { + "name": "PinCodeValidationImpossible" + }, + { + "name": "SpendingLimitsReached" + }, + { + "name": "TechnicalError" + }, + { + "name": "TransactionAmountLimitExceeded" + }, + { + "name": "TransactionCurrencyIncorrect" + }, + { + "name": "TransactionInvalid" + }, + { + "name": "TransactionNotAuthorizedForCardholder" + }, + { + "name": "TransactionNotAuthorizedForPointOfSale" + } + ] + }, + { + "kind": "ENUM", + "name": "CardAuthorizationType", + "enumValues": [ + { + "name": "Classic" + }, + { + "name": "PreAuthorization" + }, + { + "name": "DataRequest" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardCancelingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardCanNotBeDigitalizedRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardConfidential", + "fields": [ + { + "name": "pan", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cvv", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardConfigInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "cardContractExpiryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "withdrawal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "international", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "nonMainCurrencyTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "eCommerce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + } + }, + { + "name": "physicalCard", + "type": { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardConfigInput", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardConfigWithGroupDeliveryInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "cardContractExpiryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "withdrawal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "international", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "nonMainCurrencyTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "eCommerce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + } + }, + { + "name": "printPhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "physicalCardCustomOptions", + "type": { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsForGroupDeliveryInput", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "CardConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardDesignBackground", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardTextColor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardBackgroundUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "CardDesignBackgroundType", + "enumValues": [ + { + "name": "Black" + }, + { + "name": "Silver" + }, + { + "name": "Custom" + } + ] + }, + { + "kind": "ENUM", + "name": "CardDesignStatus", + "enumValues": [ + { + "name": "Draft" + }, + { + "name": "Enabled" + }, + { + "name": "Disabled" + }, + { + "name": "ToReview" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CardStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + { + "name": "statuses", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + } + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "CardType", + "ofType": null + } + }, + { + "name": "types", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardType", + "ofType": null + } + } + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "accountId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "CardMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "CardOrderByFieldInput", + "enumValues": [ + { + "name": "id" + }, + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "CardOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardPaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ] + }, + { + "kind": "ENUM", + "name": "CardPrintingHub", + "enumValues": [ + { + "name": "France" + }, + { + "name": "Spain" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProcessingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProduct", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardProductStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "applicableToPhysicalCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardDesigns", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProductDesign", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "defaultCardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "individualSpendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SpendingLimit", + "ofType": null + } + }, + "args": [] + }, + { + "name": "companySpendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SpendingLimit", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardPrintingHub", + "type": { + "kind": "ENUM", + "name": "CardPrintingHub", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "CardProductByIdResultPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CardProduct" + }, + { + "kind": "OBJECT", + "name": "CardProductNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProductDesign", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardProjectLogoSvgUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardProjectLogo300dpiUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardProjectLogo600dpiUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "zoomRatioProjectLogo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "cardDesignUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accentColor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardDesignStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardBackground", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardDesignBackground", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProductNotApplicableToPhysicalCardsRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProductNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "CardProductStatus", + "enumValues": [ + { + "name": "PendingReview" + }, + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Disabled" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardProductUsedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardSettings", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "allowsApplePay", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardProjectLogoSvgUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardProjectLogo300dpiUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardProjectLogo600dpiUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "zoomRatioProjectLogo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "cardDesignUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accentColor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProjectCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardBackground", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardSettingsBackground", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CardSettingsBackground", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardTextColor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardBackgroundUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "CardSettingsBackgroundType", + "enumValues": [ + { + "name": "Black" + }, + { + "name": "Silver" + }, + { + "name": "Custom" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CardSettingsByProjectIdInput", + "inputFields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "CardStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Processing" + }, + { + "name": "Enabled" + }, + { + "name": "Canceled" + }, + { + "name": "Canceling" + } + ] + }, + { + "kind": "INTERFACE", + "name": "CardStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CardCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CardCancelingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CardConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CardEnabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CardProcessingStatusInfo" + } + ] + }, + { + "kind": "SCALAR", + "name": "CardToken" + }, + { + "kind": "OBJECT", + "name": "CardTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedPan", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "card", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "args": [] + }, + { + "name": "terminalId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "originalAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currencyExchange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ReportExchangeRate", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "merchantId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantCity", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantCountry", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + }, + "args": [] + }, + { + "name": "merchantPostalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "merchantCategoryCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantCategoryDescription", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantCategoryDescription", + "ofType": null + } + }, + "args": [] + }, + { + "name": "category", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "Category", + "ofType": null + } + }, + "args": [] + }, + { + "name": "authorizationType", + "type": { + "kind": "ENUM", + "name": "AuthorizationType", + "ofType": null + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "ENUM", + "name": "CardTransactionCategory", + "enumValues": [ + { + "name": "InStore" + }, + { + "name": "eCommerce" + }, + { + "name": "eCommerceWith3DS" + }, + { + "name": "Withdrawal" + }, + { + "name": "Other" + } + ] + }, + { + "kind": "ENUM", + "name": "CardType", + "enumValues": [ + { + "name": "Virtual" + }, + { + "name": "VirtualAndPhysical" + }, + { + "name": "SingleUseVirtual" + } + ] + }, + { + "kind": "OBJECT", + "name": "CardWrongStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "CashAccountType", + "enumValues": [ + { + "name": "Current" + }, + { + "name": "CashPayment" + }, + { + "name": "Charges" + }, + { + "name": "CashIncome" + }, + { + "name": "Commission" + }, + { + "name": "ClearingParticipantSettlementAccount" + }, + { + "name": "LimitedLiquiditySavingsAccount" + }, + { + "name": "Loan" + }, + { + "name": "MarginalLending" + }, + { + "name": "MoneyMarket" + }, + { + "name": "NonResidentExternal" + }, + { + "name": "Overdraft" + }, + { + "name": "OverNightDeposit" + }, + { + "name": "OtherAccount" + }, + { + "name": "Settlement" + }, + { + "name": "Salary" + }, + { + "name": "Savings" + }, + { + "name": "Tax" + }, + { + "name": "TransactingAccount" + }, + { + "name": "CashTrading" + } + ] + }, + { + "kind": "ENUM", + "name": "Category", + "enumValues": [ + { + "name": "InStore" + }, + { + "name": "eCommerce" + }, + { + "name": "eCommerceWith3DS" + }, + { + "name": "Withdrawal" + }, + { + "name": "Other" + } + ] + }, + { + "kind": "SCALAR", + "name": "CCA2" + }, + { + "kind": "SCALAR", + "name": "CCA3" + }, + { + "kind": "INPUT_OBJECT", + "name": "Certificate", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CheckPaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fnciInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FnciInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CheckTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cmc7", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rlmcKey", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmountReleasedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CloseAccountInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PartnerCloseAccountReasonInput", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CloseAccountPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CloseAccountSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CloseAccountReason", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CloseAccountReasonType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Reason" + } + ] + }, + { + "kind": "ENUM", + "name": "CloseAccountReasonType", + "enumValues": [ + { + "name": "ComplianceReason" + }, + { + "name": "PartnerReason" + }, + { + "name": "Inactivity" + } + ] + }, + { + "kind": "UNION", + "name": "CloseAccountStatusReason", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CloseAccountReason" + } + ] + }, + { + "kind": "OBJECT", + "name": "CloseAccountSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CompanyInfo", + "fields": [ + { + "name": "siren", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "companyName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "headquarters", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Headquarters", + "ofType": null + } + }, + "args": [] + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "legalRepresentativePersonalAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInformation", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "CompanyShareholder", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ShareholderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "CompanyType", + "enumValues": [ + { + "name": "Association" + }, + { + "name": "Company" + }, + { + "name": "HomeOwnerAssociation" + }, + { + "name": "Other" + }, + { + "name": "SelfEmployed" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressInput", + "inputFields": [ + { + "name": "addressLine1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "postalCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressWithContactInput", + "inputFields": [ + { + "name": "addressLine1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "postalCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "PhoneNumber", + "ofType": null + } + } + }, + { + "name": "companyName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "CompleteDigitalCard", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DigitalizationType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "walletProvider", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WalletProvider", + "ofType": null + } + }, + "args": [] + }, + { + "name": "device", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Device", + "ofType": null + } + }, + "args": [] + }, + { + "name": "walletId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardMaskedNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "CompleteDigitalCardStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardContractId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DigitalCard" + } + ] + }, + { + "kind": "ENUM", + "name": "CompleteDigitalCardStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "CompleteDigitalCardStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CompleteDigitalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DigitalCardCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "DigitalCardEnabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "DigitalCardSuspendedStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "CompletedMerchantPaymentLinkStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentLinkStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "completedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentLinkStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ConfirmPhysicalCardRenewalInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressInput", + "ofType": null + } + } + }, + { + "name": "customOptions", + "type": { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsInput", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "ConfirmPhysicalCardRenewalPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ConfirmPhysicalCardRenewalSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardWrongStatusRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConfirmPhysicalCardRenewalSuccessPayload", + "fields": [ + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "Connection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "Edge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountConnection" + }, + { + "kind": "OBJECT", + "name": "AccountHolderConnection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipConnection" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositCaseConnection" + }, + { + "kind": "OBJECT", + "name": "CardConnection" + }, + { + "kind": "OBJECT", + "name": "ConsentConnection" + }, + { + "kind": "OBJECT", + "name": "DigitalCardConnection" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountConnection" + }, + { + "kind": "OBJECT", + "name": "ExternalBalanceConnection" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestConnection" + }, + { + "kind": "OBJECT", + "name": "FundingSourceConnection" + }, + { + "kind": "OBJECT", + "name": "InvoiceConnection" + }, + { + "kind": "OBJECT", + "name": "LegalDocumentConnection" + }, + { + "kind": "OBJECT", + "name": "MerchantProfileConnection" + }, + { + "kind": "OBJECT", + "name": "OnboardingConnection" + }, + { + "kind": "OBJECT", + "name": "PaymentConnection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateConnection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateConnection" + }, + { + "kind": "OBJECT", + "name": "StandingOrderConnection" + }, + { + "kind": "OBJECT", + "name": "StatementConnection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionConnection" + }, + { + "kind": "OBJECT", + "name": "TransactionConnection" + }, + { + "kind": "OBJECT", + "name": "UserConnection" + }, + { + "kind": "OBJECT", + "name": "VirtualIBANEntryConnection" + } + ] + }, + { + "kind": "OBJECT", + "name": "Consent", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requireSCA", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ConsentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "startedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "purpose", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ConsentPurpose", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consentUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [] + }, + { + "name": "challenge", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ConsentConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ConsentEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ConsentIdWithOrder", + "inputFields": [ + { + "name": "order", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": "0" + }, + { + "name": "consentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "ConsentPurpose", + "enumValues": [ + { + "name": "AcceptPartnershipConditions" + }, + { + "name": "AddAccountMembership" + }, + { + "name": "AddAccountMemberships" + }, + { + "name": "AddBeneficiary" + }, + { + "name": "AddCard" + }, + { + "name": "AddCards" + }, + { + "name": "AddDigitalCard" + }, + { + "name": "ActivatePhysicalCard" + }, + { + "name": "CloseAccount" + }, + { + "name": "InitPayment" + }, + { + "name": "PrintPhysicalCard" + }, + { + "name": "ResumeAccountMembership" + }, + { + "name": "ResumePhysicalCard" + }, + { + "name": "ScheduleStandingOrder" + }, + { + "name": "UpdateAccountMembership" + }, + { + "name": "UpdateCard" + }, + { + "name": "UpdateServerConsentProjectSettings" + }, + { + "name": "ViewCardNumbers" + }, + { + "name": "ViewPhysicalCardPin" + }, + { + "name": "EnableMandate" + }, + { + "name": "AddDirectDebitPaymentMandate" + }, + { + "name": "InitiateFundingRequest" + }, + { + "name": "InitiateInstantFundingRequest" + }, + { + "name": "InitiateInternationalCreditTransfer" + }, + { + "name": "ConsentToMultipleConsents" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentsAlreadyLinkedToMultiConsentRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consentIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ConsentsFiltersInput", + "inputFields": [ + { + "name": "userId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentsNotAllInCreatedStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consentIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentsNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ids", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "ConsentStatus", + "enumValues": [ + { + "name": "Accepted" + }, + { + "name": "CustomerRefused" + }, + { + "name": "OperationCommitting" + }, + { + "name": "CredentialRefused" + }, + { + "name": "Created" + }, + { + "name": "Started" + }, + { + "name": "Expired" + }, + { + "name": "Failed" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "OBJECT", + "name": "ConsentTypeNotSupportedByServerConsentRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCapitalDepositCaseInput", + "inputFields": [ + { + "name": "companyName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "companyShareholders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyShareholderInput", + "ofType": null + } + } + } + }, + { + "name": "individualShareholders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OnboardIndividualShareholderInput", + "ofType": null + } + } + } + }, + { + "name": "totalCapitalDepositAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "onboardingCapitalDepositCompany", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyAccountHolderInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CreateCapitalDepositCasePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreateCapitalDepositCaseSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CreateCapitalDepositCaseSuccessPayload", + "fields": [ + { + "name": "capitalDepositCase", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateCardProductInput", + "inputFields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "applicableToPhysicalCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "CreateCardProductPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreateCardProductSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ProjectNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CreateCardProductSuccessPayload", + "fields": [ + { + "name": "cardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProduct", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateMerchantPaymentLinkInput", + "inputFields": [ + { + "name": "merchantProfileId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "URL", + "ofType": null + } + } + }, + { + "name": "cancelRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "URL", + "ofType": null + } + } + }, + { + "name": "failRedirectUrl", + "type": { + "kind": "SCALAR", + "name": "URL", + "ofType": null + } + }, + { + "name": "billingAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + }, + { + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "sequence", + "type": { + "kind": "ENUM", + "name": "PaymentMandateSequence", + "ofType": null + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "Language", + "ofType": null + } + }, + { + "name": "customer", + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomerInput", + "ofType": null + } + }, + { + "name": "paymentMethodIds", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CreateMerchantPaymentLinkPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreateMerchantPaymentLinkSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "MerchantProfileWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "MerchantPaymentMethodNotActiveRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMethodNotCompatibleRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CreateMerchantPaymentLinkSuccessPayload", + "fields": [ + { + "name": "merchantPaymentLink", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MerchantPaymentLink", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateMultiConsentInput", + "inputFields": [ + { + "name": "orderedConsentIds", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConsentIdWithOrder", + "ofType": null + } + } + } + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "CreateMultiConsentPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreateMultiConsentSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ConsentsNotAllInCreatedStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentsNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyChildConsentsRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentsAlreadyLinkedToMultiConsentRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "CreateMultiConsentSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CreditTransferInput", + "inputFields": [ + { + "name": "beneficiaryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "swanAccountBeneficiary", + "type": { + "kind": "INPUT_OBJECT", + "name": "SwanAccountBeneficiaryInput", + "ofType": null + } + }, + { + "name": "sepaBeneficiary", + "type": { + "kind": "INPUT_OBJECT", + "name": "SepaBeneficiaryInput", + "ofType": null + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "mode", + "type": { + "kind": "ENUM", + "name": "CreditTransferMode", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "CreditTransferMode", + "enumValues": [ + { + "name": "InstantWithoutFallback" + }, + { + "name": "InstantWithFallback" + }, + { + "name": "Regular" + } + ] + }, + { + "kind": "OBJECT", + "name": "CsvStatement", + "fields": [ + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "StatementType", + "ofType": null + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StatementInfo" + } + ] + }, + { + "kind": "SCALAR", + "name": "Currency" + }, + { + "kind": "OBJECT", + "name": "Customer", + "fields": [ + { + "name": "externalCustomerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerInput", + "inputFields": [ + { + "name": "externalCustomerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "iban", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "SCALAR", + "name": "Date" + }, + { + "kind": "OBJECT", + "name": "DateField", + "fields": [ + { + "name": "example", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "required", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "validationRegex", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Field" + } + ] + }, + { + "kind": "SCALAR", + "name": "DateTime" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountClosedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DebtorAccountNotAllowedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteCardProductInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "DeleteCardProductPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DeleteCardProductSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "CardProductNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductUsedRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DeleteCardProductSuccessPayload", + "fields": [ + { + "name": "cardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProduct", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteSupportingDocumentInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "DeleteSupportingDocumentPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DeleteSupportingDocumentSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowDeletionRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DeleteSupportingDocumentSuccessPayload", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "DenySddInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "DenySddPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DenySddSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidArgumentRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DenySddSuccessPayload", + "fields": [ + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "DenySddVirtualIbanEntryInput", + "inputFields": [ + { + "name": "ibanEntryId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "DenySddVirtualIbanEntryPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DenySddVirtualIbanEntrySuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DenySddVirtualIbanEntrySuccessPayload", + "fields": [ + { + "name": "virtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Device", + "fields": [ + { + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "SEID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "DigitalCard", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DigitalizationType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "walletProvider", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WalletProvider", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardContractId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CompleteDigitalCard" + }, + { + "kind": "OBJECT", + "name": "PendingDigitalCard" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CompleteDigitalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CompleteDigitalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DigitalCardEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PendingDigitalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PendingDigitalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardDeclinedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PendingDigitalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PendingDigitalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "DigitalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CompleteDigitalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CompleteDigitalCardStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "DigitalCardFiltersInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "SEID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "cardMaskedNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "walletProviderId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "walletProviderName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "walletId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "DigitalCardOrderByFieldInput", + "enumValues": [ + { + "name": "id" + }, + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "DigitalCardOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "DigitalCardOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PendingDigitalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PendingDigitalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "DigitalCardSuspendedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CompleteDigitalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "suspendedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CompleteDigitalCardStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "DigitalizationType", + "enumValues": [ + { + "name": "Manual" + }, + { + "name": "CardOnFile" + }, + { + "name": "InApp" + }, + { + "name": "Unknown" + } + ] + }, + { + "kind": "OBJECT", + "name": "DirectDebitAccountVerification", + "fields": [ + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountVerification" + } + ] + }, + { + "kind": "OBJECT", + "name": "DirectDebitFundingSource", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountVerification", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DirectDebitAccountVerification", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSource" + } + ] + }, + { + "kind": "ENUM", + "name": "DirectDebitSequence", + "enumValues": [ + { + "name": "OneOff" + }, + { + "name": "Recurring" + }, + { + "name": "Recurrent" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "DisableAccountMembershipInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "DisableAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DisableAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToDisableItsOwnAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "DisableAccountMembershipSuccessPayload", + "fields": [ + { + "name": "accountMembership", + "type": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DisabledFundingLimitSettingsStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "DisabledMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "disabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "DocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DriversLicenseDocumentFile" + }, + { + "kind": "OBJECT", + "name": "IdCardDocumentFile" + }, + { + "kind": "OBJECT", + "name": "PassportDocumentFile" + }, + { + "kind": "OBJECT", + "name": "ReportDocumentFile" + }, + { + "kind": "OBJECT", + "name": "ResidencePermitDocumentFile" + } + ] + }, + { + "kind": "ENUM", + "name": "DocumentFileSide", + "enumValues": [ + { + "name": "SideA" + }, + { + "name": "SideB" + }, + { + "name": "BothSides" + }, + { + "name": "Unknown" + } + ] + }, + { + "kind": "ENUM", + "name": "DocumentReasonCode", + "enumValues": [ + { + "name": "CompanyNameMismatch" + }, + { + "name": "DeclaredAmountMismatch" + }, + { + "name": "ExpiredDocument" + }, + { + "name": "InvalidAddress" + }, + { + "name": "InvalidDocument" + }, + { + "name": "InvalidOrMissingData" + }, + { + "name": "MissingAccommodationProviderId" + }, + { + "name": "MissingAccommodationProviderIdLetter" + }, + { + "name": "MissingAccommodationProviderLetter" + }, + { + "name": "UnacceptableDocument" + } + ] + }, + { + "kind": "ENUM", + "name": "DocumentType", + "enumValues": [ + { + "name": "IdCard" + }, + { + "name": "Passport" + }, + { + "name": "ResidencePermit" + }, + { + "name": "DriversLicense" + }, + { + "name": "Face" + }, + { + "name": "Report" + } + ] + }, + { + "kind": "OBJECT", + "name": "DriversLicenseDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "files", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "DriversLicenseDocumentFile", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "DriversLicenseDocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentFileSide", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DocumentFile" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Edge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountEdge" + }, + { + "kind": "OBJECT", + "name": "AccountHolderEdge" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipEdge" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositCaseEdge" + }, + { + "kind": "OBJECT", + "name": "CardEdge" + }, + { + "kind": "OBJECT", + "name": "ConsentEdge" + }, + { + "kind": "OBJECT", + "name": "DigitalCardEdge" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountEdge" + }, + { + "kind": "OBJECT", + "name": "ExternalBalanceEdge" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestEdge" + }, + { + "kind": "OBJECT", + "name": "FundingSourceEdge" + }, + { + "kind": "OBJECT", + "name": "IdentificationEdge" + }, + { + "kind": "OBJECT", + "name": "InvoiceEdge" + }, + { + "kind": "OBJECT", + "name": "LegalDocumentEdge" + }, + { + "kind": "OBJECT", + "name": "MerchantProfileEdge" + }, + { + "kind": "OBJECT", + "name": "OnboardingEdge" + }, + { + "kind": "OBJECT", + "name": "PaymentEdge" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateEdge" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateEdge" + }, + { + "kind": "OBJECT", + "name": "StandingOrderEdge" + }, + { + "kind": "OBJECT", + "name": "StatementEdge" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionEdge" + }, + { + "kind": "OBJECT", + "name": "TransactionEdge" + }, + { + "kind": "OBJECT", + "name": "UserEdge" + }, + { + "kind": "OBJECT", + "name": "VirtualIBANEntryEdge" + } + ] + }, + { + "kind": "SCALAR", + "name": "EmailAddress" + }, + { + "kind": "ENUM", + "name": "EmploymentStatus", + "enumValues": [ + { + "name": "Craftsman" + }, + { + "name": "Employee" + }, + { + "name": "Entrepreneur" + }, + { + "name": "Farmer" + }, + { + "name": "Manager" + }, + { + "name": "Practitioner" + }, + { + "name": "Retiree" + }, + { + "name": "ShopOwner" + }, + { + "name": "Student" + }, + { + "name": "Unemployed" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnabledFundingLimitSettingsStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnabledFundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnabledMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnabledMerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "EnableReceivedDirectDebitMandateInput", + "inputFields": [ + { + "name": "receivedDirectDebitMandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "EnableReceivedDirectDebitMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "EnableReceivedDirectDebitMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateCanceledRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "EnableReceivedDirectDebitMandateSuccessPayload", + "fields": [ + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "EnvType", + "enumValues": [ + { + "name": "Live" + }, + { + "name": "Sandbox" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExpiredIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExpiredMerchantPaymentLinkStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentLinkStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentLinkStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalAccount", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "externalId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cashAccountType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "CashAccountType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "BIC", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "holderName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + }, + { + "name": "originalCreatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "balances", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalBalanceConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "source", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountDataSource", + "ofType": null + } + }, + "args": [] + }, + { + "name": "institution", + "type": { + "kind": "OBJECT", + "name": "FinancialInstitution", + "ofType": null + }, + "args": [] + }, + { + "name": "usage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountUsage", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountAlreadyExistsRejection", + "fields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountBalance", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastChangedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountBalanceAlreadyExistsRejection", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastChangedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalAccountBalanceInput", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "ofType": null + } + } + }, + { + "name": "lastChangedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "ExternalAccountBalanceType", + "enumValues": [ + { + "name": "ClosingBooked" + }, + { + "name": "PreviouslyClosedBooked" + }, + { + "name": "InterimAvailable" + }, + { + "name": "Expected" + }, + { + "name": "ValueDate" + }, + { + "name": "Other" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountDataSource", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ExternalAccountDataSourceType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "ExternalAccountDataSourceType", + "enumValues": [ + { + "name": "Push" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalAccountEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "ENUM", + "name": "ExternalAccountUsage", + "enumValues": [ + { + "name": "Private" + }, + { + "name": "Association" + }, + { + "name": "Organization" + }, + { + "name": "Unknown" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalBalanceConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalBalanceEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ExternalBalanceEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ExternalAccountBalance", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "FacePhotoDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "FeeCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "FeeInCreditor" + }, + { + "kind": "OBJECT", + "name": "FeeOutCreditor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "FeeDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "FeeInDebtor" + }, + { + "kind": "OBJECT", + "name": "FeeOutDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeInCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FeeCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FeeDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeOutCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FeeCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeOutDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FeeDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeSettingsNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "FeesTypeEnum", + "enumValues": [ + { + "name": "BankingFee" + }, + { + "name": "CardPaymentsOutsideSEPA" + }, + { + "name": "CashWithdrawalsOutsideSEPA" + }, + { + "name": "CashWithdrawalsWithinSEPA" + }, + { + "name": "CheckDeposit" + }, + { + "name": "CheckIncident" + }, + { + "name": "CirculationLetterDraftingFee" + }, + { + "name": "ConfirmationLetterDraftingFee" + }, + { + "name": "DirectDebitRejection" + }, + { + "name": "InternationalCreditTransferInGroup1" + }, + { + "name": "InternationalCreditTransferInGroup2" + }, + { + "name": "InternationalCreditTransferInGroup3" + }, + { + "name": "InternationalCreditTransferInGroup4" + }, + { + "name": "InternationalCreditTransferOutGroup1" + }, + { + "name": "InternationalCreditTransferOutGroup2" + }, + { + "name": "InternationalCreditTransferOutGroup3" + }, + { + "name": "InternationalCreditTransferOutGroup4" + }, + { + "name": "ImproperUseOfAccount" + }, + { + "name": "PhysicalCardDeliveryExpress" + }, + { + "name": "PhysicalCardDeliveryFrance" + }, + { + "name": "PhysicalCardDeliveryIntl" + }, + { + "name": "PhysicalCardPrinting" + }, + { + "name": "ProcessingJudicialOrAdministrativeSeizure" + }, + { + "name": "SepaDirectDebitInB2bLevel1" + }, + { + "name": "SepaDirectDebitInB2bLevel2" + }, + { + "name": "SepaDirectDebitInCoreLevel1" + }, + { + "name": "SepaDirectDebitInCoreLevel2" + }, + { + "name": "SepaDirectDebitInCoreReturn" + }, + { + "name": "UnauthorizedOverdraft" + }, + { + "name": "BusinessAccountSubscription" + }, + { + "name": "IndividualAccountSubscription" + }, + { + "name": "AccountMembershipSubscription" + }, + { + "name": "VirtualCardSubscription" + }, + { + "name": "SepaCreditTransferIn" + }, + { + "name": "SepaCreditTransferOut" + }, + { + "name": "InstantSepaCreditTransferIn" + }, + { + "name": "InstantSepaCreditTransferOut" + }, + { + "name": "SepaDirectDebitIn" + }, + { + "name": "SepaDirectDebitOut" + }, + { + "name": "SingleUseVirtualCard" + }, + { + "name": "CardTransaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "FeeTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "feesType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FeesTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FeeCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FeeDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Field", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "required", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DateField" + }, + { + "kind": "OBJECT", + "name": "RadioField" + }, + { + "kind": "OBJECT", + "name": "SelectField" + }, + { + "kind": "OBJECT", + "name": "TextField" + } + ] + }, + { + "kind": "ENUM", + "name": "FieldValidationError", + "enumValues": [ + { + "name": "Missing" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "FinalizeOnboardingInput", + "inputFields": [ + { + "name": "onboardingId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "FinalizeOnboardingPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "FinalizeOnboardingSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "OnboardingNotCompletedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FinalizeOnboardingSuccessPayload", + "fields": [ + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FinancialInstitution", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FnciInfo", + "fields": [ + { + "name": "colorCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cpt1", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cpt2", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cpt3", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "holderEstablishment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "responseCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimit", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "funding", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "rollingDays", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FundingLimitAmount", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "FundingLimitAmountInput", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettings", + "fields": [ + { + "name": "instantFundingLimit", + "type": { + "kind": "OBJECT", + "name": "InstantFundingLimit", + "ofType": null + }, + "args": [] + }, + { + "name": "fundingLimit", + "type": { + "kind": "OBJECT", + "name": "FundingLimit", + "ofType": null + }, + "args": [] + }, + { + "name": "fundingLimitSettingsChangeRequest", + "type": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequest", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingLimitSettingsStatusInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequest", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "instantFundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitAmount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fundingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitAmount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "approved", + "type": { + "kind": "OBJECT", + "name": "ApprovedFundingLimit", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestApprovedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestBadAmountRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequest", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "FundingLimitSettingsChangeRequestFiltersInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestOrderByFieldInput", + "enumValues": [ + { + "name": "id" + }, + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "FundingLimitSettingsChangeRequestOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestRefusedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "enumValues": [ + { + "name": "WaitingForInformation" + }, + { + "name": "Pending" + }, + { + "name": "Approved" + }, + { + "name": "Refused" + } + ] + }, + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestApprovedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestRefusedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestWaitingForInformationStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestWaitingForInformationStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsChangeRequestStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsChangeRequestStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "FundingLimitSettingsStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Disabled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DisabledFundingLimitSettingsStatusInfo" + }, + { + "kind": "OBJECT", + "name": "EnabledFundingLimitSettingsStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SuspendedFundingLimitSettingsStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "FundingSource", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DirectDebitFundingSource" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingSourceConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FundingSourceEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingSourceEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "FundingSource", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "FundingSourceFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + } + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingSourceNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "FundingSourceOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "FundingSourceOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "FundingSourceOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "FundingSourceStatus", + "enumValues": [ + { + "name": "Pending" + }, + { + "name": "Enabled" + }, + { + "name": "Canceled" + }, + { + "name": "Rejected" + }, + { + "name": "Suspended" + } + ] + }, + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CanceledFundingSourceStatusInfo" + }, + { + "kind": "OBJECT", + "name": "EnabledFundingSourceStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingFundingSourceStatusInfo" + }, + { + "kind": "OBJECT", + "name": "RejectedFundingSourceStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SuspendedFundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "FundingSourceWrongStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "GenerateAccountStatementInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "openingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + { + "name": "closingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "AccountLanguage", + "ofType": null + } + }, + { + "name": "statementType", + "type": { + "kind": "ENUM", + "name": "StatementType", + "ofType": null + }, + "defaultValue": "PDF" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "GenerateCapitalDepositDocumentUploadUrlInput", + "inputFields": [ + { + "name": "documentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "capitalDepositCaseId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "filename", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "GenerateCapitalDepositDocumentUploadUrlPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenerateCapitalDepositDocumentUploadUrlSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploaded" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploadedRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "GenerateCapitalDepositDocumentUploadUrlSuccessPayload", + "fields": [ + { + "name": "uploadUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "GenerateSupportingDocumentUploadUrlInput", + "inputFields": [ + { + "name": "supportingDocumentCollectionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "supportingDocumentType", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentType", + "ofType": null + } + }, + { + "name": "filename", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "supportingDocumentPurpose", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentPurposeEnum", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "GenerateSupportingDocumentUploadUrlPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenerateSupportingDocumentUploadUrlSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "GenerateSupportingDocumentUploadUrlSuccessPayload", + "fields": [ + { + "name": "supportingDocumentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "upload", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentUploadInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "GlobalFundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "GlobalInstantFundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "GrantConsentWithServerSignatureInput", + "inputFields": [ + { + "name": "consentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "signature", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "GrantConsentWithServerSignaturePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GrantConsentWithServerSignatureSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ConsentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "NotReachableConsentStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentTypeNotSupportedByServerConsentRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForConsentOperationRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForProjectRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectSettingsNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialMissingRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentCredentialsNotValidOrOutdatedRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentSignatureNotValidRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "GrantConsentWithServerSignatureSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Headquarters", + "fields": [ + { + "name": "town", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "zipCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "SCALAR", + "name": "HexColorCode" + }, + { + "kind": "SCALAR", + "name": "IBAN" + }, + { + "kind": "OBJECT", + "name": "IBANNotReachableRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "IBANNotValidRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "IBANStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Canceled" + }, + { + "name": "Suspended" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "IbanValidationInput", + "inputFields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "IbanValidationRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "UNION", + "name": "IbanValidationResult", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ValidIban" + }, + { + "kind": "OBJECT", + "name": "InvalidIban" + } + ] + }, + { + "kind": "OBJECT", + "name": "IdCardDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issueDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "mrz", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "files", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "IdCardDocumentFile", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "IdCardDocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentFileSide", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DocumentFile" + } + ] + }, + { + "kind": "OBJECT", + "name": "Identification", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "process", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationProcess", + "ofType": null + } + }, + "args": [] + }, + { + "name": "levels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "IdentificationLevelStatusesInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "documents", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "IdentificationDocument", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "identityDocumentType", + "type": { + "kind": "ENUM", + "name": "IdentityDocumentType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "IdentificationConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "IdentificationEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "IdentificationDocument", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "IdCardDocument" + }, + { + "kind": "OBJECT", + "name": "PassportDocument" + }, + { + "kind": "OBJECT", + "name": "ResidencePermitDocument" + }, + { + "kind": "OBJECT", + "name": "DriversLicenseDocument" + }, + { + "kind": "OBJECT", + "name": "FacePhotoDocument" + }, + { + "kind": "OBJECT", + "name": "ReportDocument" + } + ] + }, + { + "kind": "OBJECT", + "name": "IdentificationEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Identification", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "IdentificationFiltersInput", + "inputFields": [ + { + "name": "statuses", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + } + } + }, + { + "name": "levels", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + } + } + }, + { + "name": "processes", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationProcess", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationInvalidReason", + "enumValues": [ + { + "name": "AbsentOrIncompleteFace" + }, + { + "name": "AlteredDevice" + }, + { + "name": "BadDocumentLighting" + }, + { + "name": "DamagedDocument" + }, + { + "name": "ExpiredDocument" + }, + { + "name": "FraudDetected" + }, + { + "name": "InadequateVideo" + }, + { + "name": "InsufficientApplicantLighting" + }, + { + "name": "InsufficientApplicantLiveness" + }, + { + "name": "InsufficientConnectionQuality" + }, + { + "name": "InsufficientDocumentLiveness" + }, + { + "name": "InsufficientDocumentReadability" + }, + { + "name": "InsufficientFaceReadability" + }, + { + "name": "InsufficientVideoReadability" + }, + { + "name": "InternalError" + }, + { + "name": "InvalidAddress" + }, + { + "name": "InvalidOrMissingData" + }, + { + "name": "InvoluntaryIdentification" + }, + { + "name": "MissingGeolocationData" + }, + { + "name": "NegativeNewsHit" + }, + { + "name": "NonMatchingIdentity" + }, + { + "name": "NonOriginalDocument" + }, + { + "name": "SanctionListHit" + }, + { + "name": "SecondDocumentRequired" + }, + { + "name": "TechnicalSignatureError" + }, + { + "name": "TimeoutSignatureFlow" + }, + { + "name": "UnacceptableDocument" + }, + { + "name": "UnderageApplicant" + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationLevel", + "enumValues": [ + { + "name": "Expert" + }, + { + "name": "QES" + }, + { + "name": "PVID" + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationLevelInput", + "enumValues": [ + { + "name": "Expert" + }, + { + "name": "PVID" + }, + { + "name": "QES" + } + ] + }, + { + "kind": "OBJECT", + "name": "IdentificationLevels", + "fields": [ + { + "name": "PVID", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "QES", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expert", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "IdentificationLevelStatusesInfo", + "fields": [ + { + "name": "expert", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "IdentificationLevelStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "qes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "IdentificationLevelStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pvid", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "IdentificationLevelStatusInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "IdentificationLevelStatusInfo", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "NotSupportedIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "NotStartedIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "StartedIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "ValidIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "InvalidIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CanceledIdentificationLevelStatusInfo" + }, + { + "kind": "OBJECT", + "name": "ExpiredIdentificationLevelStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationProcess", + "enumValues": [ + { + "name": "Expert" + }, + { + "name": "QES" + }, + { + "name": "PVID" + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationsOrderByField", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "IdentificationsOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "IdentificationsOrderByField", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "IdentificationStatus", + "enumValues": [ + { + "name": "Uninitiated" + }, + { + "name": "Processing" + }, + { + "name": "ReadyToSign" + }, + { + "name": "ValidIdentity" + }, + { + "name": "InsufficientDocumentQuality" + }, + { + "name": "InvalidIdentity" + } + ] + }, + { + "kind": "OBJECT", + "name": "IdentityAlreadyBindToAccountMembershipRejection", + "fields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identityId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "IdentityDocumentType", + "enumValues": [ + { + "name": "IdCard" + }, + { + "name": "Passport" + }, + { + "name": "ResidencePermit" + }, + { + "name": "DriversLicense" + } + ] + }, + { + "kind": "OBJECT", + "name": "InAppProvisioningData", + "fields": [ + { + "name": "activationData", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ephemeralPublicKey", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "encryptedData", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "iv", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "publicKeyFingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "oaepHashingAlgorithm", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "IndividualShareholder", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ShareholderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "nationality", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwner", + "fields": [ + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "birthCity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "birthCityPostalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "birthCountryCode", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + }, + "args": [] + }, + { + "name": "info", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "IndividualUltimateBeneficialOwnerInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "residencyAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInformation", + "ofType": null + }, + "args": [] + }, + { + "name": "title", + "type": { + "kind": "ENUM", + "name": "TitleEnum", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "IndividualUltimateBeneficialOwnerInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeHasCapital" + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeLegalRepresentative" + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeOther" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "IndividualUltimateBeneficialOwnerInput", + "inputFields": [ + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthCity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthCityPostalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthCountryCode", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + { + "name": "indirect", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "direct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "totalCapitalPercentage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "ofType": null + } + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInformationInput", + "ofType": null + } + }, + { + "name": "title", + "type": { + "kind": "ENUM", + "name": "TitleEnum", + "ofType": null + } + } + ] + }, + { + "kind": "SCALAR", + "name": "Float" + }, + { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "enumValues": [ + { + "name": "LegalRepresentative" + }, + { + "name": "HasCapital" + }, + { + "name": "Other" + } + ] + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeHasCapital", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "indirect", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "direct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "totalCapitalPercentage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "IndividualUltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeLegalRepresentative", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "IndividualUltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwnerTypeOther", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IndividualUltimateBeneficialOwnerTypeEnum", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "IndividualUltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiateCheckMerchantPaymentInput", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "merchantProfileId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "cmc7", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "rlmcKey", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "InitiateCheckMerchantPaymentPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InitiateCheckMerchantPaymentSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "CheckRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InitiateCheckMerchantPaymentSuccessPayload", + "fields": [ + { + "name": "merchantPayment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fnciInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "FnciInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiateCreditTransfersInput", + "inputFields": [ + { + "name": "accountNumber", + "type": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + { + "name": "accountId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "creditTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreditTransferInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "InitiateCreditTransfersPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InitiateCreditTransfersSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InitiateCreditTransfersSuccessPayload", + "fields": [ + { + "name": "payment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiateFundingRequestInput", + "inputFields": [ + { + "name": "fundingSourceId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "isInstant", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "InitiateFundingRequestPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InitiateFundingRequestSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "FundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "GlobalFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "FundingSourceWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "FundingSourceNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InsufficientFundsRejection" + }, + { + "kind": "OBJECT", + "name": "InstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectInstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "GlobalInstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "AccountVerificationWrongStatusRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InitiateFundingRequestSuccessPayload", + "fields": [ + { + "name": "payment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiateInternationalCreditTransferInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "accountNumber", + "type": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + { + "name": "targetAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "internationalBeneficiary", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryInput", + "ofType": null + } + } + }, + { + "name": "internationalCreditTransferDetails", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalCreditTransferDetailsInput", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "InternationalCreditTransferDisplayLanguage", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "InitiateInternationalCreditTransferResponsePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InitiateInternationalCreditTransferResponseSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InitiateInternationalCreditTransferResponseSuccessPayload", + "fields": [ + { + "name": "payment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + }, + { + "name": "quote", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternationalCreditTransferQuote", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiateMerchantPaymentCollectionInput", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "internalDirectDebit", + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitPaymentCollectionInput", + "ofType": null + } + }, + { + "name": "sepaDirectDebit", + "type": { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitPaymentCollectionInput", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "InitiateMerchantPaymentCollectionPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InitiateMerchantPaymentCollectionSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InitiateMerchantPaymentCollectionSuccessPayload", + "fields": [ + { + "name": "merchantPaymentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InstantFundingLimit", + "fields": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "funding", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InstantFundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InsufficientFundsRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalBeneficiary", + "fields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "isMyOwnIban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Beneficiary" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransfer", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "InternalCreditTransferCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "InternalCreditTransferDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "INTERFACE", + "name": "InternalCreditTransferCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalCreditTransferInCreditor" + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferOutCreditor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "InternalCreditTransferDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalCreditTransferInDebtor" + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferOutDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferInCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalCreditTransferCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalCreditTransferDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferOutCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalCreditTransferCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransferOutDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalCreditTransferDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitB2BMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitB2BPaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitCreditor", + "fields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitDebtor", + "fields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "InternalDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalPaymentDirectDebitMandate" + }, + { + "kind": "OBJECT", + "name": "InternalReceivedDirectDebitMandate" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitPaymentCollectionInput", + "inputFields": [ + { + "name": "mandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "InternalDirectDebitSequence", + "enumValues": [ + { + "name": "OneOff" + }, + { + "name": "Recurring" + }, + { + "name": "Recurrent" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitStandardMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitStandardPaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalDirectDebitCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalDirectDebitDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "mandate", + "type": { + "kind": "INTERFACE", + "name": "InternalDirectDebitMandate", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmountReleasedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalPaymentDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "scheme", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternalPaymentMandateScheme", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternalPaymentMandateSequence", + "ofType": null + } + }, + "args": [] + }, + { + "name": "mandateDocumentUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalPaymentMandateDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ultimateCreditorName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalPaymentMandateCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalDirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "PaymentDirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "PaymentMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalPaymentMandateCreditor", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalPaymentMandateDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "accountId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateDebtor" + } + ] + }, + { + "kind": "ENUM", + "name": "InternalPaymentMandateScheme", + "enumValues": [ + { + "name": "InternalDirectDebitStandard" + }, + { + "name": "InternalDirectDebitB2b" + } + ] + }, + { + "kind": "ENUM", + "name": "InternalPaymentMandateSequence", + "enumValues": [ + { + "name": "Recurring" + }, + { + "name": "Recurrent" + }, + { + "name": "OneOff" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalReceivedDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "scheme", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternalReceivedDirectDebitMandateScheme", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternalReceivedDirectDebitMandateSequence", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternalReceivedDirectDebitMandateCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ultimateCreditorName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "InternalDirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternalReceivedDirectDebitMandateCreditor", + "fields": [ + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "InternalReceivedDirectDebitMandateScheme", + "enumValues": [ + { + "name": "InternalDirectDebitB2b" + }, + { + "name": "InternalDirectDebitStandard" + } + ] + }, + { + "kind": "ENUM", + "name": "InternalReceivedDirectDebitMandateSequence", + "enumValues": [ + { + "name": "OneOff" + }, + { + "name": "Recurrent" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternationalAddressInput", + "inputFields": [ + { + "name": "address1", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "country", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "zipCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryDetailsInput", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "InternationalBeneficiaryDynamicForms", + "fields": [ + { + "name": "schemes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Scheme", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryInput", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + } + }, + { + "name": "details", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryDetailsInput", + "ofType": null + } + } + } + } + }, + { + "name": "route", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternationalCreditTransferRouteInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "InternationalCreditTransferCreditor", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternationalCreditTransferOutCreditor" + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferInCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferCurrencyExchange", + "fields": [ + { + "name": "exchangeRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "feesAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "sourceAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "targetAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "InternationalCreditTransferDebtor", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternationalCreditTransferOutDebtor" + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferInDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferDetails", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "InternationalCreditTransferDetailsInput", + "inputFields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "InternationalCreditTransferDisplayLanguage", + "enumValues": [ + { + "name": "en" + }, + { + "name": "nl" + }, + { + "name": "fr" + }, + { + "name": "de" + }, + { + "name": "it" + }, + { + "name": "pt" + }, + { + "name": "es" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferDynamicForm", + "fields": [ + { + "name": "fields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "Field", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "remainingFieldsToRefreshCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferInCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bic", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferOutCreditor", + "fields": [ + { + "name": "currency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "details", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternationalCreditTransferDetails", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "route", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternationalCreditTransferRoute", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferOutDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferQuote", + "fields": [ + { + "name": "exchangeRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sourceAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "targetAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "feesAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "InternationalCreditTransferRoute", + "enumValues": [ + { + "name": "Unknown" + }, + { + "name": "Aba" + }, + { + "name": "Argentina" + }, + { + "name": "Australian" + }, + { + "name": "AustralianBpay" + }, + { + "name": "Brazil" + }, + { + "name": "Canadian" + }, + { + "name": "Chile" + }, + { + "name": "CostaRica" + }, + { + "name": "Czech" + }, + { + "name": "Emirates" + }, + { + "name": "FedwireLocal" + }, + { + "name": "FijiMobile" + }, + { + "name": "HongKongFps" + }, + { + "name": "Hongkong" + }, + { + "name": "Hungarian" + }, + { + "name": "Iban" + }, + { + "name": "Indian" + }, + { + "name": "IndianUpi" + }, + { + "name": "Interac" + }, + { + "name": "IsraeliLocal" + }, + { + "name": "Japanese" + }, + { + "name": "KenyaLocal" + }, + { + "name": "KenyaMobile" + }, + { + "name": "Malaysian" + }, + { + "name": "MalaysianDuitnow" + }, + { + "name": "Mexican" + }, + { + "name": "Morocco" + }, + { + "name": "Nepal" + }, + { + "name": "NewZealand" + }, + { + "name": "Philippines" + }, + { + "name": "PhilippinesMobile" + }, + { + "name": "Polish" + }, + { + "name": "PrivatBank" + }, + { + "name": "Singapore" + }, + { + "name": "SingaporePaynow" + }, + { + "name": "SortCode" + }, + { + "name": "SouthAfrica" + }, + { + "name": "SouthKoreanPaygate" + }, + { + "name": "SouthKoreanPaygateBusiness" + }, + { + "name": "SwiftCode" + }, + { + "name": "Thailand" + }, + { + "name": "TurkishEarthport" + } + ] + }, + { + "kind": "ENUM", + "name": "InternationalCreditTransferRouteInput", + "enumValues": [ + { + "name": "Aba" + }, + { + "name": "Argentina" + }, + { + "name": "Australian" + }, + { + "name": "AustralianBpay" + }, + { + "name": "Brazil" + }, + { + "name": "Canadian" + }, + { + "name": "Chile" + }, + { + "name": "CostaRica" + }, + { + "name": "Czech" + }, + { + "name": "Emirates" + }, + { + "name": "FedwireLocal" + }, + { + "name": "FijiMobile" + }, + { + "name": "HongKongFps" + }, + { + "name": "Hongkong" + }, + { + "name": "Hungarian" + }, + { + "name": "Iban" + }, + { + "name": "Indian" + }, + { + "name": "IndianUpi" + }, + { + "name": "Interac" + }, + { + "name": "IsraeliLocal" + }, + { + "name": "Japanese" + }, + { + "name": "KenyaLocal" + }, + { + "name": "KenyaMobile" + }, + { + "name": "Malaysian" + }, + { + "name": "MalaysianDuitnow" + }, + { + "name": "Mexican" + }, + { + "name": "Morocco" + }, + { + "name": "Nepal" + }, + { + "name": "NewZealand" + }, + { + "name": "Philippines" + }, + { + "name": "PhilippinesMobile" + }, + { + "name": "Polish" + }, + { + "name": "PrivatBank" + }, + { + "name": "Singapore" + }, + { + "name": "SingaporePaynow" + }, + { + "name": "SortCode" + }, + { + "name": "SouthKoreanPaygate" + }, + { + "name": "SouthKoreanPaygateBusiness" + }, + { + "name": "SouthAfrica" + }, + { + "name": "SwiftCode" + }, + { + "name": "Thailand" + }, + { + "name": "TurkishEarthport" + } + ] + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferTransaction", + "fields": [ + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "InternationalCreditTransferCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "InternationalCreditTransferDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "fees", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "instructedAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "intermediaryBankFees", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currencyExchange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InternationalCreditTransferCurrencyExchange", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvalidArgumentRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InvalidArgumentRejectionCode", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvalidArgumentRejectionField", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "InvalidArgumentRejectionCode", + "enumValues": [ + { + "name": "INVALID_INPUT" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvalidArgumentRejectionField", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvalidBeneficiaryVerification", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvalidIban", + "fields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InvalidIbanCode", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "InvalidIbanCode", + "enumValues": [ + { + "name": "InvalidLength" + }, + { + "name": "InvalidStructure" + }, + { + "name": "InvalidChecksum" + }, + { + "name": "InvalidBank" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvalidIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasons", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationInvalidReason", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvalidPhoneNumberRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvalidSirenNumberRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "Invoice", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InvoiceType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InvoiceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "openingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "closingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "InvoiceConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "InvoiceEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "InvoiceEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "ENUM", + "name": "InvoiceStatus", + "enumValues": [ + { + "name": "Failed" + }, + { + "name": "NotPaid" + }, + { + "name": "Paid" + }, + { + "name": "PaymentDue" + }, + { + "name": "Pending" + }, + { + "name": "Voided" + } + ] + }, + { + "kind": "ENUM", + "name": "InvoiceType", + "enumValues": [ + { + "name": "Invoice" + }, + { + "name": "RefundNote" + } + ] + }, + { + "kind": "ENUM", + "name": "Language", + "enumValues": [ + { + "name": "de" + }, + { + "name": "en" + }, + { + "name": "fr" + }, + { + "name": "it" + }, + { + "name": "nl" + }, + { + "name": "es" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "LegalDocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "LegalDocumentStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountLanguage", + "ofType": null + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "LegalDocumentActiveStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "activatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "LegalDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalDocumentConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LegalDocumentEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalDocumentEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "LegalDocument", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalDocumentInactiveStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "activatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "deactivatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "LegalDocumentStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "LegalDocumentsFilterInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "ofType": null + } + }, + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "LegalDocumentType", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "enumValues": [ + { + "name": "Upcoming" + }, + { + "name": "Active" + }, + { + "name": "Inactive" + } + ] + }, + { + "kind": "INTERFACE", + "name": "LegalDocumentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "LegalDocumentActiveStatusInfo" + }, + { + "kind": "OBJECT", + "name": "LegalDocumentInactiveStatusInfo" + }, + { + "kind": "OBJECT", + "name": "LegalDocumentUpcomingStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "LegalDocumentType", + "enumValues": [ + { + "name": "SwanTCU" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalDocumentUpcomingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "LegalDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "effectiveDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "LegalDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeDisabledRejection", + "fields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeSuspendedRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "MandateLanguage", + "enumValues": [ + { + "name": "de" + }, + { + "name": "en" + }, + { + "name": "fr" + }, + { + "name": "it" + }, + { + "name": "nl" + }, + { + "name": "es" + }, + { + "name": "pt" + }, + { + "name": "fi" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MembershipInfoInput", + "inputFields": [ + { + "name": "email", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "restrictedTo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RestrictedToInput", + "ofType": null + } + } + }, + { + "name": "canViewAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "canManageCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MembershipsFilterInput", + "inputFields": [ + { + "name": "canManageCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canViewAccount", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountMembershipStatus", + "ofType": null + } + } + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "MerchantCategoryDescription", + "enumValues": [ + { + "name": "AccessoryAndApparelStoresMiscellaneous" + }, + { + "name": "AccountingAuditingAndBookkeepingServices" + }, + { + "name": "AdvertisingServices" + }, + { + "name": "AgriculturalCooperatives" + }, + { + "name": "AirCarriersAirlinesNotElsewhereClassified" + }, + { + "name": "AirConditioningAndRefrigerationRepairShops" + }, + { + "name": "AirConditioningHeatingAndPlumbingContractors" + }, + { + "name": "AirlinesAirCarriers" + }, + { + "name": "AirportsAirportTerminalsFlyingFields" + }, + { + "name": "AlterationsMendingSeamstressesTailors" + }, + { + "name": "AmbulanceServices" + }, + { + "name": "AmusementParksCarnivalsCircusesFortuneTellers" + }, + { + "name": "AntiqueReproductionStores" + }, + { + "name": "AntiqueShopsSalesRepairsAndRestorationServices" + }, + { + "name": "ApplianceRepairShopsElectricalAndSmall" + }, + { + "name": "AquariumsDolphinariumsZoosAndSeaquariums" + }, + { + "name": "ArchitecturalEngineeringAndSurveyingServices" + }, + { + "name": "ArtDealersAndGalleries" + }, + { + "name": "ArtistSupplyStoresCraftShops" + }, + { + "name": "AssociationsCivicSocialAndFraternal" + }, + { + "name": "AthleticFieldsCommercialSportsProfessionalSportsClubsSportsPromoters" + }, + { + "name": "AttorneysLegalServices" + }, + { + "name": "AutomatedCashDisbursementsCustomerFinancialInstitution" + }, + { + "name": "AutomobileAndTruckDealersSalesServiceRepairsPartsAndLeasing" + }, + { + "name": "AutomobileAndTruckDealersUsedOnlySales" + }, + { + "name": "AutomobileAssociations" + }, + { + "name": "AutomobileParkingLotsAndGarages" + }, + { + "name": "AutomobileRentalAgencyNotElsewhereClassified" + }, + { + "name": "AutomotiveBodyRepairShops" + }, + { + "name": "AutomotivePaintShops" + }, + { + "name": "AutomotivePartsAccessoriesStores" + }, + { + "name": "AutomotiveServiceShops" + }, + { + "name": "AutomotiveTireStores" + }, + { + "name": "AutoStoreHomeSupplyStores" + }, + { + "name": "BailAndBondPayments" + }, + { + "name": "Bakeries" + }, + { + "name": "BandsOrchestrasAndMiscellaneousEntertainersNotElsewhereClassified" + }, + { + "name": "BarberAndBeautyShops" + }, + { + "name": "BarsCocktailLoungesDiscothequesNightclubsAndTavernsDrinkingPlacesAlcoholicBeverages" + }, + { + "name": "BicycleShopsSalesAndService" + }, + { + "name": "BoatDealers" + }, + { + "name": "BoatLeasesAndBoatRentals" + }, + { + "name": "BooksPeriodicalsAndNewspapers" + }, + { + "name": "BookStores" + }, + { + "name": "BowlingAlleys" + }, + { + "name": "BridgeAndRoadFeesTolls" + }, + { + "name": "BuildingMaterialsLumberStores" + }, + { + "name": "BusinessServicesNotElsewhereClassified" + }, + { + "name": "BusLines" + }, + { + "name": "BuyingOrShoppingClubsServices" + }, + { + "name": "CableSatelliteAndOtherPayTelevisionAndRadioServices" + }, + { + "name": "CameraAndPhotographicSupplyStores" + }, + { + "name": "CamperDealersRecreationalAndUtilityTrailers" + }, + { + "name": "CampgroundsAndTrailerParks" + }, + { + "name": "CandyNutConfectioneryStores" + }, + { + "name": "CardGiftNoveltyAndSouvenirShops" + }, + { + "name": "CarpentryContractors" + }, + { + "name": "CarpetAndUpholsteryCleaning" + }, + { + "name": "CarRentalAgencies" + }, + { + "name": "CarWashes" + }, + { + "name": "Caterers" + }, + { + "name": "ChemicalsAndAlliedProductsNotElsewhereClassified" + }, + { + "name": "ChildCareServices" + }, + { + "name": "ChildrenAndInfantsWearStores" + }, + { + "name": "ChiropodistsPodiatrists" + }, + { + "name": "Chiropractors" + }, + { + "name": "CigarStoresAndStands" + }, + { + "name": "CleaningAndMaintenanceJanitorialServices" + }, + { + "name": "CleaningGarmentAndLaundryServices" + }, + { + "name": "ClockJewelryAndWatchRepairShops" + }, + { + "name": "ClockJewelryWatchAndSilverwareStore" + }, + { + "name": "ClothingRentalCostumesUniformsAndFormalWear" + }, + { + "name": "ClubsCountryClubsMembershipAthleticRecreationSportsPrivateGolfCourses" + }, + { + "name": "CollegesUniversitiesProfessionalSchoolsAndJuniorColleges" + }, + { + "name": "CommercialArtGraphicsPhotography" + }, + { + "name": "CommercialEquipmentNotElsewhereClassified" + }, + { + "name": "CommercialFootwear" + }, + { + "name": "ComputerMaintenanceRepairAndServicesNotElsewhereClassified" + }, + { + "name": "ComputerNetworkOrInformationServices" + }, + { + "name": "ComputerProgrammingDataProcessingAndIntegratedSystemsDesignServices" + }, + { + "name": "ComputersComputerPeripheralEquipmentSoftware" + }, + { + "name": "ComputerSoftwareStores" + }, + { + "name": "ConcreteWorkContractors" + }, + { + "name": "ConstructionMaterialsNotElsewhereClassified" + }, + { + "name": "ConsultingManagementAndPublicRelationsServices" + }, + { + "name": "ConsumerCreditReportingAgencies" + }, + { + "name": "ContractorsSpecialTradeNotElsewhereClassified" + }, + { + "name": "CosmeticStores" + }, + { + "name": "CourierServiceAirAndGroundFreightForwarders" + }, + { + "name": "CourtCostsIncludingAlimonyAndChildSupport" + }, + { + "name": "CruiseLines" + }, + { + "name": "CrystalAndGlasswareStores" + }, + { + "name": "DairyProductsStores" + }, + { + "name": "DanceHallsSchoolsAndStudios" + }, + { + "name": "DatingServices" + }, + { + "name": "DebtMarriagePersonalCounselingService" + }, + { + "name": "DentalAndMedicalLaboratories" + }, + { + "name": "DentalLaboratoryMedicalOphthalmicHospitalEquipmentAndSupplies" + }, + { + "name": "DentistsOrthodontists" + }, + { + "name": "DepartmentStores" + }, + { + "name": "DetectiveAgenciesProtectiveAgenciesSecurityServicesIncludingArmoredCarsGuardDogs" + }, + { + "name": "DigitalGoodsAudiovisualMediaIncludingBooksMoviesAndMusic" + }, + { + "name": "DigitalGoodsGames" + }, + { + "name": "DigitalGoodsMultiCategory" + }, + { + "name": "DigitalGoodsSoftwareApplicationsExcludingGames" + }, + { + "name": "DirectMarketingCatalogMerchants" + }, + { + "name": "DirectMarketingCombinationCatalogAndRetailMerchants" + }, + { + "name": "DirectMarketingContinuitySubscriptionMerchants" + }, + { + "name": "DirectMarketingInboundTelemarketingMerchants" + }, + { + "name": "DirectMarketingInsuranceServices" + }, + { + "name": "DirectMarketingOtherDirectMarketersNotElsewhereClassified" + }, + { + "name": "DirectMarketingOutboundTelemarketingMerchants" + }, + { + "name": "DirectMarketingTravelRelatedArrangementServices" + }, + { + "name": "DiscountStores" + }, + { + "name": "DoctorsNotElsewhereClassified" + }, + { + "name": "DoorToDoorSales" + }, + { + "name": "DraperyUpholsteryAndWindowCoveringsStores" + }, + { + "name": "DrugsDrugProprietorsAndDruggistsSundries" + }, + { + "name": "DrugStoresPharmacies" + }, + { + "name": "DryCleaners" + }, + { + "name": "DurableGoodsNotElsewhereClassified" + }, + { + "name": "DutyFreeStores" + }, + { + "name": "EatingPlacesRestaurants" + }, + { + "name": "ElectricalContractors" + }, + { + "name": "ElectricalPartsAndEquipment" + }, + { + "name": "ElectricRazorStoresSalesAndService" + }, + { + "name": "ElectricVehicleCharging" + }, + { + "name": "ElectronicRepairShops" + }, + { + "name": "ElectronicSales" + }, + { + "name": "EmploymentAgenciesTemporaryHelpServices" + }, + { + "name": "EquipmentFurnitureAndHomeFurnishingsStoresExceptAppliances" + }, + { + "name": "EquipmentRentalAndLeasingServicesFurnitureRentalToolRental" + }, + { + "name": "ExterminatingAndDisinfectingServices" + }, + { + "name": "FabricNeedleworkPieceGoodsAndSewingStores" + }, + { + "name": "FamilyClothingStores" + }, + { + "name": "FastFoodRestaurants" + }, + { + "name": "Fines" + }, + { + "name": "FireplaceFireplaceScreensAndAccessoriesStores" + }, + { + "name": "FloorCoveringStores" + }, + { + "name": "Florists" + }, + { + "name": "FloristsSuppliesNurseryStockAndFlowers" + }, + { + "name": "FreezerLockerMeatProvisioners" + }, + { + "name": "FuelDealersCoalFuelOilLiquefiedPetroleumWood" + }, + { + "name": "FuelDispenserAutomated" + }, + { + "name": "FuneralServiceAndCrematories" + }, + { + "name": "FurnitureReupholsteryAndRepairRefinishing" + }, + { + "name": "FurriersAndFurShops" + }, + { + "name": "GamblingTransactions" + }, + { + "name": "GameToyAndHobbyShops" + }, + { + "name": "GeneralContractorsResidentialAndCommercial" + }, + { + "name": "GlassPaintWallpaperStores" + }, + { + "name": "GolfCoursesPublic" + }, + { + "name": "GovernmentLicensedHorseOrDogRacingUSRegionOnly" + }, + { + "name": "GovernmentOwnedLotterySpecificCountries" + }, + { + "name": "GovernmentOwnedLotteryUSRegionOnly" + }, + { + "name": "GovernmentServicesNotElsewhereClassified" + }, + { + "name": "GroceryStoresSupermarkets" + }, + { + "name": "HardwareEquipmentAndSupplies" + }, + { + "name": "HardwareStores" + }, + { + "name": "HatCleaningShopsShoeRepairShopsShoeShineParlors" + }, + { + "name": "HealthAndBeautySpas" + }, + { + "name": "HealthPractitionersMedicalServicesNotElsewhereClassified" + }, + { + "name": "HearingAidsSalesServiceSupplyStores" + }, + { + "name": "HomeSupplyWarehouseStores" + }, + { + "name": "HorticulturalAndLandscapingServices" + }, + { + "name": "Hospitals" + }, + { + "name": "HouseholdApplianceStores" + }, + { + "name": "IndustrialSuppliesNotElsewhereClassified" + }, + { + "name": "InformationRetrievalServices" + }, + { + "name": "InsulationMasonryPlasteringStoneworkAndTileSettingContractors" + }, + { + "name": "InsuranceSalesUnderwritingAndPremiums" + }, + { + "name": "InternetGamblingUSRegionOnly" + }, + { + "name": "IntraGovernmentPurchasesGovernmentOnly" + }, + { + "name": "KeyEntryTelecomMerchantProvidingSingleLocalAndLongDistancePhoneCallsUsingACentralAccessNumberInANonFaceToFaceEnvironmentUsingKeyEntry" + }, + { + "name": "LaundryServicesFamilyAndCommercial" + }, + { + "name": "LawnAndGardenSupplyStores" + }, + { + "name": "LeatherGoodsAndLuggageStores" + }, + { + "name": "LimousinesAndTaxicabs" + }, + { + "name": "LodgingHotelsMotelsResorts" + }, + { + "name": "LodgingHotelsMotelsResortsNotElsewhereClassified" + }, + { + "name": "ManualCashDisbursementsCustomerFinancialInstitution" + }, + { + "name": "MarinasMarineServiceSupplies" + }, + { + "name": "MassageParlors" + }, + { + "name": "MenAndBoysClothingAndAccessoriesStores" + }, + { + "name": "MenAndWomenClothingStores" + }, + { + "name": "MenWomenAndChildrenUniformsAndCommercialClothing" + }, + { + "name": "MerchandiseAndServicesCustomerFinancialInstitution" + }, + { + "name": "MetalServiceCentersAndOffices" + }, + { + "name": "MiscellaneousAndSpecialtyRetailStores" + }, + { + "name": "MiscellaneousAutomotiveAircraftAndFarmEquipmentDealersNotElsewhereClassified" + }, + { + "name": "MiscellaneousFoodStoresConvenienceStoresMarketsSpecialtyStores" + }, + { + "name": "MiscellaneousGeneralMerchandiseStores" + }, + { + "name": "MiscellaneousHouseFurnishingSpecialtyShops" + }, + { + "name": "MiscellaneousPublishingAndPrinting" + }, + { + "name": "MiscellaneousRepairShopsAndRelatedServices" + }, + { + "name": "MobileHomeDealers" + }, + { + "name": "MoneySendFunding" + }, + { + "name": "MoneySendInterCountry" + }, + { + "name": "MoneySendIntraCountry" + }, + { + "name": "MoneyTransfer" + }, + { + "name": "MotionPictureAndVideoTapeProductionAndDistribution" + }, + { + "name": "MotionPictureTheaters" + }, + { + "name": "MotorcycleShopsAndDealers" + }, + { + "name": "MotorFreightCarriersTruckingLocalLongDistanceMovingAndStorageCompaniesLocalDelivery" + }, + { + "name": "MotorHomeAndRecreationalVehicleRental" + }, + { + "name": "MotorHomeDealers" + }, + { + "name": "MotorVehicleSuppliesAndNewParts" + }, + { + "name": "MusicStoresMusicalInstrumentsPianosSheetMusic" + }, + { + "name": "NewsDealersAndNewsstands" + }, + { + "name": "NondurableGoodsNotElsewhereClassified" + }, + { + "name": "NursingAndPersonalCareFacilities" + }, + { + "name": "OfficeAndCommercialFurniture" + }, + { + "name": "OfficePhotographicPhotocopyAndMicrofilmEquipment" + }, + { + "name": "OfficeSchoolSupplyAndStationeryStores" + }, + { + "name": "OpticiansOpticalGoodsAndEyeglasses" + }, + { + "name": "OptometristsOphthalmologists" + }, + { + "name": "OrganizationsCharitableAndSocialService" + }, + { + "name": "OrganizationsMembershipNotElsewhereClassified" + }, + { + "name": "OrganizationsPolitical" + }, + { + "name": "OrganizationsReligious" + }, + { + "name": "OrthopedicGoodsArtificialLimbStores" + }, + { + "name": "OsteopathicPhysicians" + }, + { + "name": "OtherServicesNotElsewhereClassified" + }, + { + "name": "PackageStoresBeerWineAndLiquor" + }, + { + "name": "PaintsVarnishesAndSupplies" + }, + { + "name": "PassengerRailways" + }, + { + "name": "PawnShops" + }, + { + "name": "PaymentTransactionCustomerFinancialInstitution" + }, + { + "name": "PaymentTransactionMerchant" + }, + { + "name": "PetroleumAndPetroleumProducts" + }, + { + "name": "PetShopsPetFoodAndSupplies" + }, + { + "name": "PhotoDevelopingPhotofinishingLaboratories" + }, + { + "name": "PhotographicStudios" + }, + { + "name": "PieceGoodsNotionsAndOtherDryGoods" + }, + { + "name": "PlumbingAndHeatingEquipment" + }, + { + "name": "PoiFundingTransactions" + }, + { + "name": "PoolAndBilliardEstablishments" + }, + { + "name": "PostalServicesGovernmentOnly" + }, + { + "name": "PreciousStonesAndMetalsWatchesAndJewelry" + }, + { + "name": "ProfessionalServicesNotElsewhereClassified" + }, + { + "name": "PublicWarehousingFarmProductsRefrigeratedGoodsHouseholdGoodsStorage" + }, + { + "name": "QuasiCashCustomerFinancialInstitution" + }, + { + "name": "QuasiCashMerchant" + }, + { + "name": "QuickCopyReproductionAndBlueprintingServices" + }, + { + "name": "RailroadsFreight" + }, + { + "name": "RealEstateAgentsAndManagersRentals" + }, + { + "name": "RecordShops" + }, + { + "name": "RecreationalAndSportingCamps" + }, + { + "name": "RecreationServicesNotElsewhereClassified" + }, + { + "name": "ReligiousGoodsStores" + }, + { + "name": "RoofingAndSidingSheetMetalWorkContractors" + }, + { + "name": "SalvageAndWreckingYards" + }, + { + "name": "SanitationPolishingAndSpecialtyCleaningPreparations" + }, + { + "name": "SchoolsAndEducationalServicesNotElsewhereClassified" + }, + { + "name": "SchoolsBusinessAndSecretarial" + }, + { + "name": "SchoolsCorrespondence" + }, + { + "name": "SchoolsElementaryAndSecondary" + }, + { + "name": "SchoolsTradeAndVocational" + }, + { + "name": "SecondHandStoresUsedMerchandiseStores" + }, + { + "name": "SecuritiesBrokersDealers" + }, + { + "name": "ServiceStationsWithOrWithoutAncillaryServices" + }, + { + "name": "ShoeStores" + }, + { + "name": "SnowmobileDealers" + }, + { + "name": "SportingGoodsStores" + }, + { + "name": "SportsApparelRidingApparelStores" + }, + { + "name": "StampAndCoinStoresPhilatelicAndNumismaticSupplies" + }, + { + "name": "StationeryOfficeSuppliesPrintingAndWritingPaper" + }, + { + "name": "StenographicAndSecretarialSupportServices" + }, + { + "name": "SwimmingPoolsSalesAndSupplies" + }, + { + "name": "TaxPayments" + }, + { + "name": "TaxPreparationService" + }, + { + "name": "TelecommunicationEquipmentIncludingTelephoneSales" + }, + { + "name": "TelecommunicationServicesIncludingButNotLimitedToPrepaidPhoneServicesAndRecurringPhoneServices" + }, + { + "name": "TelegraphServices" + }, + { + "name": "TentAndAwningShops" + }, + { + "name": "TestingLaboratoriesNonMedical" + }, + { + "name": "TheatricalProducersExceptMotionPicturesAndTicketAgencies" + }, + { + "name": "Timeshares" + }, + { + "name": "TireRetreadingAndRepairShops" + }, + { + "name": "TouristAttractionsAndExhibits" + }, + { + "name": "TowingServices" + }, + { + "name": "TransportationServicesNotElsewhereClassified" + }, + { + "name": "TransportationSuburbanAndLocalCommuterPassengerIncludingFerries" + }, + { + "name": "TravelAgenciesAndTourOperators" + }, + { + "name": "TruckRental" + }, + { + "name": "TypesettingPlateMakingAndRelatedServices" + }, + { + "name": "TypewriterStoresRentalsSalesService" + }, + { + "name": "Unknown" + }, + { + "name": "UtilitiesElectricGasHeatingOilSanitaryWater" + }, + { + "name": "VarietyStores" + }, + { + "name": "VeterinaryServices" + }, + { + "name": "VideoAmusementGameSupplies" + }, + { + "name": "VideoEntertainmentRentalStores" + }, + { + "name": "VideoGameArcadesOrEstablishments" + }, + { + "name": "WeldingRepair" + }, + { + "name": "WholesaleClubs" + }, + { + "name": "WigAndToupeeShops" + }, + { + "name": "WomenAccessoryAndSpecialtyStores" + }, + { + "name": "WomenReadyToWearStores" + } + ] + }, + { + "kind": "OBJECT", + "name": "MerchantPaymentLink", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentLinkStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantProfile", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MerchantProfile", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cancelRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "failRedirectUrl", + "type": { + "kind": "SCALAR", + "name": "URL", + "ofType": null + }, + "args": [] + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentLinkSequenceType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "billingAddress", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "customer", + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentMethods", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "MerchantPaymentLinkStatus", + "enumValues": [ + { + "name": "Active" + }, + { + "name": "Expired" + }, + { + "name": "Completed" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "MerchantPaymentLinkStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentLinkStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ActiveMerchantPaymentLinkStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CompletedMerchantPaymentLinkStatusInfo" + }, + { + "kind": "OBJECT", + "name": "ExpiredMerchantPaymentLinkStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CardMerchantPaymentMethod" + }, + { + "kind": "OBJECT", + "name": "CheckMerchantPaymentMethod" + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitB2BMerchantPaymentMethod" + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitStandardMerchantPaymentMethod" + }, + { + "kind": "OBJECT", + "name": "SepaDirectDebitB2BMerchantPaymentMethod" + }, + { + "kind": "OBJECT", + "name": "SepaDirectDebitCoreMerchantPaymentMethod" + } + ] + }, + { + "kind": "OBJECT", + "name": "MerchantPaymentMethodNotActiveRejection", + "fields": [ + { + "name": "paymentMethodIds", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "enumValues": [ + { + "name": "PendingReview" + }, + { + "name": "Enabled" + }, + { + "name": "Rejected" + }, + { + "name": "Disabled" + }, + { + "name": "Canceled" + }, + { + "name": "Suspended" + } + ] + }, + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CanceledMerchantPaymentMethodStatusInfo" + }, + { + "kind": "OBJECT", + "name": "DisabledMerchantPaymentMethodStatusInfo" + }, + { + "kind": "OBJECT", + "name": "EnabledMerchantPaymentMethodStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingMerchantPaymentMethodStatusInfo" + }, + { + "kind": "OBJECT", + "name": "RejectedMerchantPaymentMethodStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SuspendedMerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "enumValues": [ + { + "name": "InternalDirectDebitStandard" + }, + { + "name": "InternalDirectDebitB2b" + }, + { + "name": "SepaDirectDebitCore" + }, + { + "name": "SepaDirectDebitB2b" + }, + { + "name": "Check" + }, + { + "name": "Card" + } + ] + }, + { + "kind": "OBJECT", + "name": "MerchantProfile", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantWebsite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "merchantLogoUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProductType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedMonthlyPaymentVolume", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantPaymentMethods", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "requestedMerchantProfileUpdates", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "RequestMerchantProfileUpdate", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "expectedAverageBasket", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "MerchantProfileConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MerchantProfileEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "MerchantProfileEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "MerchantProfile", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MerchantProfileFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "MerchantProfileOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "MerchantProfileOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "MerchantProfileOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "enumValues": [ + { + "name": "PendingReview" + }, + { + "name": "Enabled" + }, + { + "name": "Rejected" + }, + { + "name": "Canceled" + }, + { + "name": "Suspended" + } + ] + }, + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CanceledMerchantProfileStatusInfo" + }, + { + "kind": "OBJECT", + "name": "EnabledMerchantProfileStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingReviewMerchantProfileStatusInfo" + }, + { + "kind": "OBJECT", + "name": "RejectedMerchantProfileStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SuspendedMerchantProfileStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "MerchantProfileWrongStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "MonthlyIncome", + "enumValues": [ + { + "name": "LessThan500" + }, + { + "name": "Between500And1500" + }, + { + "name": "Between1500And3000" + }, + { + "name": "Between3000And4500" + }, + { + "name": "MoreThan4500" + } + ] + }, + { + "kind": "ENUM", + "name": "MonthlyPaymentVolume", + "enumValues": [ + { + "name": "Between10000And50000" + }, + { + "name": "Between50000And100000" + }, + { + "name": "LessThan10000" + }, + { + "name": "MoreThan100000" + } + ] + }, + { + "kind": "OBJECT", + "name": "Mutation", + "fields": [ + { + "name": "activatePhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ActivatePhysicalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ActivatePhysicalCardInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddAccountMembershipInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addAccountMemberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddAccountMembershipsPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddAccountMembershipsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddCardInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addCardsWithGroupDelivery", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddCardsWithGroupDeliveryPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddCardsWithGroupDeliveryInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddCardsPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddCardsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addDigitalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddDigitalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddDigitalCardInput", + "ofType": null + } + } + ] + }, + { + "name": "addExternalAccountBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddExternalAccountBalancePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddExternalAccountBalanceInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addExternalAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddExternalAccountPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddExternalAccountInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addFundingLimitSettingsChangeRequest", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddFundingLimitSettingsChangeRequestPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddFundingLimitSettingsChangeRequestInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addOrUpdateExternalAccountBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddOrUpdateExternalAccountBalancePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddOrUpdateExternalAccountBalanceInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addSingleUseVirtualCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddSingleUseVirtualCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddSingleUseVirtualCardInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addSingleUseVirtualCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddSingleUseVirtualCardsPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddSingleUseVirtualCardsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addVirtualIbanEntry", + "type": { + "kind": "UNION", + "name": "AddVirtualIbanEntryPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddVirtualIbanInput", + "ofType": null + } + } + ] + }, + { + "name": "allowSddVirtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AllowSddVirtualIbanEntryPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AllowSddVirtualIbanEntryInput", + "ofType": null + } + } + } + ] + }, + { + "name": "allowSdd", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AllowSddPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AllowSddInput", + "ofType": null + } + } + } + ] + }, + { + "name": "bindAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "BindAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BindAccountMembershipInput", + "ofType": null + } + } + } + ] + }, + { + "name": "cancelCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "CancelCardInput", + "ofType": null + } + } + ] + }, + { + "name": "cancelDigitalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelDigitalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "CancelDigitalCardInput", + "ofType": null + } + } + ] + }, + { + "name": "cancelPhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelPhysicalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "CancelPhysicalCardInput", + "ofType": null + } + } + ] + }, + { + "name": "cancelVirtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelVirtualIbanEntryPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelVirtualIbanEntryInput", + "ofType": null + } + } + } + ] + }, + { + "name": "closeAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CloseAccountPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CloseAccountInput", + "ofType": null + } + } + } + ] + }, + { + "name": "confirmPhysicalCardRenewal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ConfirmPhysicalCardRenewalPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ConfirmPhysicalCardRenewalInput", + "ofType": null + } + } + } + ] + }, + { + "name": "deleteSupportingDocument", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "DeleteSupportingDocumentPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSupportingDocumentInput", + "ofType": null + } + } + } + ] + }, + { + "name": "denySddVirtualIbanEntry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "DenySddVirtualIbanEntryPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DenySddVirtualIbanEntryInput", + "ofType": null + } + } + } + ] + }, + { + "name": "denySdd", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "DenySddPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "DenySddInput", + "ofType": null + } + } + ] + }, + { + "name": "disableAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "DisableAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "DisableAccountMembershipInput", + "ofType": null + } + } + ] + }, + { + "name": "finalizeOnboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "FinalizeOnboardingPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FinalizeOnboardingInput", + "ofType": null + } + } + } + ] + }, + { + "name": "onboardCompanyAccountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "OnboardCompanyAccountHolderPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyAccountHolderInput", + "ofType": null + } + } + ] + }, + { + "name": "onboardIndividualAccountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "OnboardIndividualAccountHolderPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "OnboardIndividualAccountHolderInput", + "ofType": null + } + } + ] + }, + { + "name": "printPhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "PrintPhysicalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PrintPhysicalCardInput", + "ofType": null + } + } + } + ] + }, + { + "name": "requestSupportingDocumentCollectionReview", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "RequestSupportingDocumentCollectionReviewPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestSupportingDocumentCollectionReviewInput", + "ofType": null + } + } + ] + }, + { + "name": "resumeAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ResumeAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResumeAccountMembershipInput", + "ofType": null + } + } + ] + }, + { + "name": "resumePhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ResumePhysicalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResumePhysicalCardInput", + "ofType": null + } + } + ] + }, + { + "name": "suspendAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "SuspendAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuspendAccountMembershipInput", + "ofType": null + } + } + } + ] + }, + { + "name": "suspendPhysicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "SuspendPhysicalCardPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuspendPhysicalCardInput", + "ofType": null + } + } + ] + }, + { + "name": "updateAccountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateAccountHolderPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountHolderInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateAccountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateAccountMembershipPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountMembershipInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateAccount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateAccountPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateCard", + "type": { + "kind": "UNION", + "name": "UpdateCardPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateCardInput", + "ofType": null + } + } + ] + }, + { + "name": "updateCompanyOnboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateCompanyOnboardingPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateCompanyOnboardingInput", + "ofType": null + } + } + ] + }, + { + "name": "updateIndividualOnboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateIndividualOnboardingPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateIndividualOnboardingInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateSupportingDocument", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateSupportingDocumentPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSupportingDocumentInput", + "ofType": null + } + } + } + ] + }, + { + "name": "viewCardNumbers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ViewCardNumbersPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ViewCardNumbersInput", + "ofType": null + } + } + } + ] + }, + { + "name": "viewPhysicalCardNumbers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ViewPhysicalCardNumbersPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ViewPhysicalCardNumbersInput", + "ofType": null + } + } + } + ] + }, + { + "name": "viewPhysicalCardPin", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ViewPhysicalCardPinPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ViewPhysicalCardPinInput", + "ofType": null + } + } + } + ] + }, + { + "name": "generateSupportingDocumentUploadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "GenerateSupportingDocumentUploadUrlPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GenerateSupportingDocumentUploadUrlInput", + "ofType": null + } + } + } + ] + }, + { + "name": "generateAccountStatement", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Statement", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GenerateAccountStatementInput", + "ofType": null + } + } + } + ] + }, + { + "name": "createCapitalDepositCase", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CreateCapitalDepositCasePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCapitalDepositCaseInput", + "ofType": null + } + } + } + ] + }, + { + "name": "generateCapitalDepositDocumentUploadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "GenerateCapitalDepositDocumentUploadUrlPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GenerateCapitalDepositDocumentUploadUrlInput", + "ofType": null + } + } + } + ] + }, + { + "name": "createCardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CreateCardProductPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateCardProductInput", + "ofType": null + } + } + } + ] + }, + { + "name": "deleteCardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "DeleteCardProductPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteCardProductInput", + "ofType": null + } + } + } + ] + }, + { + "name": "reviewProjectCardSettings", + "type": { + "kind": "UNION", + "name": "ReviewProjectCardSettingsPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReviewProjectCardSettingsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "suspendCardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "SuspendCardProductPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuspendCardProductInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateProjectCardSettings", + "type": { + "kind": "UNION", + "name": "UpdateProjectCardSettingsPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardSettingsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "cancelConsent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelConsentPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelConsentInput", + "ofType": null + } + } + } + ] + }, + { + "name": "createMultiConsent", + "type": { + "kind": "UNION", + "name": "CreateMultiConsentPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMultiConsentInput", + "ofType": null + } + } + } + ] + }, + { + "name": "grantConsentWithServerSignature", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "GrantConsentWithServerSignaturePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GrantConsentWithServerSignatureInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateUserConsentSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateUserConsentSettingsPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserConsentSettingsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addReceivedInternalDirectDebitB2bMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddReceivedInternalDirectDebitB2bMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddReceivedInternalDirectDebitB2bMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addReceivedSepaDirectDebitB2bMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddReceivedSepaDirectDebitB2bMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddReceivedSepaDirectDebitB2bMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "enableReceivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "EnableReceivedDirectDebitMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnableReceivedDirectDebitMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "suspendReceivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "SuspendReceivedDirectDebitMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuspendReceivedDirectDebitMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "updateReceivedSepaDirectDebitB2bMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "UpdateReceivedSepaDirectDebitB2bMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateReceivedSepaDirectDebitB2bMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addInternalDirectDebitPaymentMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "AddInternalDirectDebitPaymentMandatePayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddInternalDirectDebitPaymentMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addMerchantProfile", + "type": { + "kind": "UNION", + "name": "AddMerchantProfilePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddMerchantProfileInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addSepaDirectDebitPaymentMandate", + "type": { + "kind": "UNION", + "name": "AddSepaDirectDebitPaymentMandatePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddSepaDirectDebitPaymentMandateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateCheckMerchantPayment", + "type": { + "kind": "UNION", + "name": "InitiateCheckMerchantPaymentPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateCheckMerchantPaymentInput", + "ofType": null + } + } + } + ] + }, + { + "name": "createMerchantPaymentLink", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CreateMerchantPaymentLinkPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMerchantPaymentLinkInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateMerchantPaymentCollection", + "type": { + "kind": "UNION", + "name": "InitiateMerchantPaymentCollectionPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateMerchantPaymentCollectionInput", + "ofType": null + } + } + } + ] + }, + { + "name": "requestMerchantPaymentMethods", + "type": { + "kind": "UNION", + "name": "RequestMerchantPaymentMethodsPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMerchantPaymentMethodsInput", + "ofType": null + } + } + } + ] + }, + { + "name": "requestMerchantProfileUpdate", + "type": { + "kind": "UNION", + "name": "RequestMerchantProfileUpdatePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMerchantProfileUpdateInput", + "ofType": null + } + } + } + ] + }, + { + "name": "cancelTransaction", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelTransactionPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelTransactionInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateCreditTransfers", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "InitiateCreditTransfersPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateCreditTransfersInput", + "ofType": null + } + } + } + ] + }, + { + "name": "refund", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "RefundPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RefundInput", + "ofType": null + } + } + } + ] + }, + { + "name": "addDirectDebitFundingSource", + "type": { + "kind": "UNION", + "name": "AddDirectDebitFundingSourcePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddDirectDebitFundingSourceInput", + "ofType": null + } + } + } + ] + }, + { + "name": "cancelFundingSource", + "type": { + "kind": "UNION", + "name": "CancelFundingSourcePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelFundingSourceInput", + "ofType": null + } + } + } + ] + }, + { + "name": "cancelStandingOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "CancelStandingOrderPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CancelStandingOrderInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateCreditTransfersV2", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "InitiateCreditTransfersPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateCreditTransfersInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateFundingRequest", + "type": { + "kind": "UNION", + "name": "InitiateFundingRequestPayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateFundingRequestInput", + "ofType": null + } + } + } + ] + }, + { + "name": "initiateInternationalCreditTransfer", + "type": { + "kind": "UNION", + "name": "InitiateInternationalCreditTransferResponsePayload", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiateInternationalCreditTransferInput", + "ofType": null + } + } + } + ] + }, + { + "name": "scheduleStandingOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ScheduleStandingOrderPayload", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ScheduleStandingOrderInput", + "ofType": null + } + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "NotReachableConsentStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentStatus", + "type": { + "kind": "ENUM", + "name": "ConsentStatus", + "ofType": null + }, + "args": [] + }, + { + "name": "unreachableStatus", + "type": { + "kind": "ENUM", + "name": "ConsentStatus", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "NotStartedIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "NotSupportedCountryRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "NotSupportedIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OAuthRedirectParameters", + "fields": [ + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "OAuthRedirectParametersInput", + "inputFields": [ + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyAccountHolderInput", + "inputFields": [ + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "registrationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "companyType", + "type": { + "kind": "ENUM", + "name": "CompanyType", + "ofType": null + } + }, + { + "name": "businessActivity", + "type": { + "kind": "ENUM", + "name": "BusinessActivity", + "ofType": null + } + }, + { + "name": "businessActivityDescription", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "accountCountry", + "type": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + { + "name": "monthlyPaymentVolume", + "type": { + "kind": "ENUM", + "name": "MonthlyPaymentVolume", + "ofType": null + } + }, + { + "name": "individualUltimateBeneficialOwners", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IndividualUltimateBeneficialOwnerInput", + "ofType": null + } + } + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "isRegistered", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "oAuthRedirectParameters", + "type": { + "kind": "INPUT_OBJECT", + "name": "OAuthRedirectParametersInput", + "ofType": null + } + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "legalRepresentativePersonalAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInformationInput", + "ofType": null + } + }, + { + "name": "typeOfRepresentation", + "type": { + "kind": "ENUM", + "name": "TypeOfRepresentation", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "OnboardCompanyAccountHolderPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OnboardCompanyAccountHolderSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardCompanyAccountHolderSuccessPayload", + "fields": [ + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyShareholderInput", + "inputFields": [ + { + "name": "capitalDepositAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "onboardingInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OnboardCompanyAccountHolderInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardIndividualAccountHolderInput", + "inputFields": [ + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "accountCountry", + "type": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + { + "name": "employmentStatus", + "type": { + "kind": "ENUM", + "name": "EmploymentStatus", + "ofType": null + } + }, + { + "name": "monthlyIncome", + "type": { + "kind": "ENUM", + "name": "MonthlyIncome", + "ofType": null + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "redirectUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "oAuthRedirectParameters", + "type": { + "kind": "INPUT_OBJECT", + "name": "OAuthRedirectParametersInput", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "OnboardIndividualAccountHolderPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OnboardIndividualAccountHolderSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardIndividualAccountHolderSuccessPayload", + "fields": [ + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardIndividualShareholderInput", + "inputFields": [ + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "birthDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "nationality", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + }, + { + "name": "capitalDepositAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "onboardingInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OnboardIndividualAccountHolderInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "Onboarding", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accountCountry", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "finalizedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "info", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "OnboardingAccountHolderInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + }, + "args": [] + }, + { + "name": "onboardingUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboardingState", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingState", + "ofType": null + } + }, + "args": [] + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "oAuthRedirectParameters", + "type": { + "kind": "OBJECT", + "name": "OAuthRedirectParameters", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "tcuUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "legalRepresentativeAcceptedIdentificationLevels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "legalRepresentativeRecommendedIdentificationLevel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "OnboardingAccountHolderInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OnboardingCompanyAccountHolderInfo" + }, + { + "kind": "OBJECT", + "name": "OnboardingIndividualAccountHolderInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingCompanyAccountHolderInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "registrationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "companyType", + "type": { + "kind": "ENUM", + "name": "CompanyType", + "ofType": null + }, + "args": [] + }, + { + "name": "businessActivity", + "type": { + "kind": "ENUM", + "name": "BusinessActivity", + "ofType": null + }, + "args": [] + }, + { + "name": "businessActivityDescription", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "monthlyPaymentVolume", + "type": { + "kind": "ENUM", + "name": "MonthlyPaymentVolume", + "ofType": null + }, + "args": [] + }, + { + "name": "individualUltimateBeneficialOwners", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "IndividualUltimateBeneficialOwner", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "residencyAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "isRegistered", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "legalRepresentativePersonalAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInformation", + "ofType": null + }, + "args": [] + }, + { + "name": "typeOfRepresentation", + "type": { + "kind": "ENUM", + "name": "TypeOfRepresentation", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OnboardingAccountHolderInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OnboardingEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardingFiltersInput", + "inputFields": [ + { + "name": "types", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + } + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingStatus", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingFinalizedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingIndividualAccountHolderInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountHolderType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "employmentStatus", + "type": { + "kind": "ENUM", + "name": "EmploymentStatus", + "ofType": null + }, + "args": [] + }, + { + "name": "monthlyIncome", + "type": { + "kind": "ENUM", + "name": "MonthlyIncome", + "ofType": null + }, + "args": [] + }, + { + "name": "residencyAddress", + "type": { + "kind": "OBJECT", + "name": "AddressInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OnboardingAccountHolderInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accountCountry", + "type": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "info", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "OnboardingAccountHolderInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboardingUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboardingState", + "type": { + "kind": "ENUM", + "name": "OnboardingState", + "ofType": null + }, + "args": [] + }, + { + "name": "redirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectInfo", + "type": { + "kind": "OBJECT", + "name": "ProjectInfo", + "ofType": null + }, + "args": [] + }, + { + "name": "verificationFlow", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "VerificationFlow", + "ofType": null + } + }, + "args": [] + }, + { + "name": "oAuthRedirectParameters", + "type": { + "kind": "OBJECT", + "name": "OAuthRedirectParameters", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + }, + { + "name": "legalRepresentativeAcceptedIdentificationLevels", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "legalRepresentativeRecommendedIdentificationLevel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IdentificationLevel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "tcuUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "OnboardingInvalidStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ValidationError", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingNotCompletedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboardingId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "OnboardingOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + }, + { + "name": "finalizedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardingOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "OnboardingOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "OnboardingState", + "enumValues": [ + { + "name": "Ongoing" + }, + { + "name": "Completed" + } + ] + }, + { + "kind": "ENUM", + "name": "OnboardingStatus", + "enumValues": [ + { + "name": "Finalized" + }, + { + "name": "Invalid" + }, + { + "name": "Valid" + } + ] + }, + { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OnboardingFinalizedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "OnboardingInvalidStatusInfo" + }, + { + "kind": "OBJECT", + "name": "OnboardingValidStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "OnboardingValidStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "OnboardingStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OnboardingStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "OrderByDirection", + "enumValues": [ + { + "name": "Asc" + }, + { + "name": "Desc" + } + ] + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "fields": [ + { + "name": "hasNextPage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "hasPreviousPage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "startCursor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "endCursor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "PartnerCloseAccountReasonInput", + "inputFields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PartnerCloseAccountReasonType", + "ofType": null + } + } + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "PartnerCloseAccountReasonType", + "enumValues": [ + { + "name": "ClosingRequested" + } + ] + }, + { + "kind": "OBJECT", + "name": "PartnershipAcceptedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PartnershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "acceptedDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PartnershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PartnershipCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PartnershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "acceptedDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PartnershipStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PartnershipCancelingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PartnershipStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "acceptedDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAfter", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PartnershipStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "PartnershipStatus", + "enumValues": [ + { + "name": "Accepted" + }, + { + "name": "Canceling" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PartnershipStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PartnershipStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PartnershipAcceptedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PartnershipCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PartnershipCancelingStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PassportDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issueDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "mrz", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "files", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PassportDocumentFile", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PassportDocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentFileSide", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DocumentFile" + } + ] + }, + { + "kind": "OBJECT", + "name": "Payment", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "standingOrder", + "type": { + "kind": "OBJECT", + "name": "StandingOrder", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "PaymentAccountType", + "enumValues": [ + { + "name": "EMoney" + }, + { + "name": "PaymentService" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentConsentPending", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalPaymentDirectDebitMandate" + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentDirectDebitMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentStatus", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentInitiated", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentLevel", + "enumValues": [ + { + "name": "Limited" + }, + { + "name": "Unlimited" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentLinkSequenceType", + "enumValues": [ + { + "name": "OneOff" + }, + { + "name": "Recurrent" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalPaymentDirectDebitMandate" + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentDirectDebitMandate" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentMandateCanceledReason", + "enumValues": [ + { + "name": "RequestedByUser" + }, + { + "name": "MandateExpired" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateCanceledReason", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentMandateEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentMandateCreditor", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalPaymentMandateCreditor" + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentMandateCreditor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentMandateDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalPaymentMandateDebtor" + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentMandateDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentMandateFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + } + } + }, + { + "name": "scheme", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateScheme", + "ofType": null + } + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateMandateNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentMandateOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentMandateOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "PaymentMandateOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateReferenceAlreadyUsedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMandateRejectedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentMandateScheme", + "enumValues": [ + { + "name": "SepaDirectDebitCore" + }, + { + "name": "SepaDirectDebitB2b" + }, + { + "name": "InternalDirectDebitStandard" + }, + { + "name": "InternalDirectDebitB2b" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentMandateSequence", + "enumValues": [ + { + "name": "Recurrent" + }, + { + "name": "OneOff" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Enabled" + }, + { + "name": "Rejected" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentMandateStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PaymentMandateCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateEnabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateRejectedStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentMethodNotCompatibleRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "PaymentOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentProduct", + "enumValues": [ + { + "name": "InternalCreditTransfer" + }, + { + "name": "SEPACreditTransfer" + }, + { + "name": "SEPADirectDebit" + }, + { + "name": "Card" + }, + { + "name": "Fees" + }, + { + "name": "InternalDirectDebit" + }, + { + "name": "Check" + }, + { + "name": "InternationalCreditTransfer" + } + ] + }, + { + "kind": "OBJECT", + "name": "PaymentRejected", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "PaymentStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Initiated" + }, + { + "name": "Rejected" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PaymentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PaymentConsentPending" + }, + { + "kind": "OBJECT", + "name": "PaymentInitiated" + }, + { + "kind": "OBJECT", + "name": "PaymentRejected" + } + ] + }, + { + "kind": "OBJECT", + "name": "PdfStatement", + "fields": [ + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "StatementType", + "ofType": null + }, + "args": [] + }, + { + "name": "url", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StatementInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingConsentAccountMembershipUpdate", + "fields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PendingDigitalCard", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DigitalizationType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "walletProvider", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "WalletProvider", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PendingDigitalCardStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "inAppProvisioningData", + "type": { + "kind": "OBJECT", + "name": "InAppProvisioningData", + "ofType": null + }, + "args": [ + { + "name": "signatureData", + "type": { + "kind": "INPUT_OBJECT", + "name": "SignatureData", + "ofType": null + } + } + ] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardContractId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DigitalCard" + } + ] + }, + { + "kind": "ENUM", + "name": "PendingDigitalCardStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Pending" + }, + { + "name": "Declined" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PendingDigitalCardStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PendingDigitalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DigitalCardConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "DigitalCardDeclinedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "DigitalCardPendingStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingFundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PendingMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingReviewMerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingReviewStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pendingEndDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PendingVerificationStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PermissionCannotBeGrantedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "SCALAR", + "name": "PhoneNumber" + }, + { + "kind": "OBJECT", + "name": "PhysicalCard", + "fields": [ + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "offlineSpendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardMaskedNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "customOptions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCardCustomOptions", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardActivatedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardCancelingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardConfigInput", + "inputFields": [ + { + "name": "deliveryAddress", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressInput", + "ofType": null + } + } + }, + { + "name": "physicalCardCustomOptions", + "type": { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsInput", + "ofType": null + } + }, + { + "name": "choosePin", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardCustomOptions", + "fields": [ + { + "name": "additionalPrintedLine", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsForGroupDeliveryInput", + "inputFields": [ + { + "name": "additionalPrintedLine", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsForPrintInput", + "inputFields": [ + { + "name": "additionalPrintedLine", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsInput", + "inputFields": [ + { + "name": "additionalPrintedLine", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardProcessingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardRenewedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + }, + { + "name": "estimatedDeliveryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "trackingNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingProvider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "isPINReady", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Processing" + }, + { + "name": "Activated" + }, + { + "name": "Suspended" + }, + { + "name": "Canceled" + }, + { + "name": "Canceling" + }, + { + "name": "ToActivate" + }, + { + "name": "ToRenew" + }, + { + "name": "Renewed" + } + ] + }, + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PhysicalCardActivatedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardCancelingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardProcessingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardRenewedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardSuspendedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardToActivateStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardToRenewStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardSuspendedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardToActivateStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + }, + { + "name": "estimatedDeliveryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "trackingNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "shippingProvider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "isPINReady", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardToRenewStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PhysicalCardStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "PhysicalCardWrongStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "currentStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PhysicalCardStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "SCALAR", + "name": "PIN" + }, + { + "kind": "OBJECT", + "name": "PINNotReadyRejection", + "fields": [ + { + "name": "physicalCardIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "PreferredNotificationChannel", + "enumValues": [ + { + "name": "Sms" + }, + { + "name": "App" + } + ] + }, + { + "kind": "OBJECT", + "name": "PreProvisioningSUVCardSettings", + "fields": [ + { + "name": "preProvisioningSUVCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "preProvisioningSUVNumberOfCards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ownerProvisioningSUVCards", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "preProvisioningSUVCardsAvailablePercentage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "PrintPhysicalCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CompleteAddressInput", + "ofType": null + } + } + }, + { + "name": "choosePINCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "physicalCardCustomOptions", + "type": { + "kind": "INPUT_OBJECT", + "name": "PhysicalCardCustomOptionsForPrintInput", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "PrintPhysicalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "PrintPhysicalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "AlreadyValidPhysicalCardRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductNotApplicableToPhysicalCardsRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "PrintPhysicalCardSuccessPayload", + "fields": [ + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "ProductType", + "enumValues": [ + { + "name": "Goods" + }, + { + "name": "Services" + }, + { + "name": "VirtualGoods" + }, + { + "name": "GiftsAndDonations" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectCardDesigns", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issuingProcessorVisualId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "specificCardProductCodeForCompanies", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardDesigns", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProductDesign", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "preProvisioningSUVCardSettings", + "type": { + "kind": "OBJECT", + "name": "PreProvisioningSUVCardSettings", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProjectCardSettings", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issuingProcessorVisualId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "specificCardProductCodeForCompanies", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "cardSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardSettings", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "preProvisioningSUVCardSettings", + "type": { + "kind": "OBJECT", + "name": "PreProvisioningSUVCardSettings", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "ProjectCardSettingsBackgroundType", + "enumValues": [ + { + "name": "Black" + }, + { + "name": "Silver" + }, + { + "name": "Custom" + } + ] + }, + { + "kind": "ENUM", + "name": "ProjectCardStatus", + "enumValues": [ + { + "name": "Initiated" + }, + { + "name": "Enabled" + }, + { + "name": "Disabled" + }, + { + "name": "ToReview" + }, + { + "name": "Suspended" + }, + { + "name": "Rejected" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectForbiddenRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectFundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectInfo", + "fields": [ + { + "name": "cardProducts", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProduct", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "activeCardSettings", + "type": { + "kind": "OBJECT", + "name": "CardSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "B2BMembershipIDVerification", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "supportingDocumentSettings", + "type": { + "kind": "OBJECT", + "name": "SupportingDocumentSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProjectType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "logoUri", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "accentColor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "customConsentSubdomain", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "oAuthClientId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "tcuDocumentUri", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [ + { + "name": "language", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "name": "tcuDocumentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "webBankingSettings", + "type": { + "kind": "OBJECT", + "name": "WebBankingSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProjectStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "allowsDesktopAuthentication", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ProjectInstantFundingLimitExceededRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectInvalidStatusRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectNotFound", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsForbiddenError", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsNotFound", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsStatusNotReachable", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "ProjectStatus", + "enumValues": [ + { + "name": "Initiated" + }, + { + "name": "MeetingScheduled" + }, + { + "name": "ToReview" + }, + { + "name": "PendingCompliance" + }, + { + "name": "LimitedLiveAccess" + }, + { + "name": "BetaLiveAccess" + }, + { + "name": "Enabled" + }, + { + "name": "FullLiveAccess" + }, + { + "name": "Disabled" + }, + { + "name": "Suspended" + }, + { + "name": "Rejected" + }, + { + "name": "PendingLiveReview" + } + ] + }, + { + "kind": "ENUM", + "name": "ProjectType", + "enumValues": [ + { + "name": "INDIVIDUAL" + }, + { + "name": "COMPANY" + }, + { + "name": "COMPANY_AND_CUSTOMERS" + }, + { + "name": "Individual" + }, + { + "name": "Company" + }, + { + "name": "CompanyAndCustomers" + } + ] + }, + { + "kind": "OBJECT", + "name": "PublicOnboardingDisabledRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "Query", + "fields": [ + { + "name": "fundingLimitSettingsChangeRequest", + "type": { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequest", + "ofType": null + }, + "args": [ + { + "name": "fundingLimitSettingsChangeRequestId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "ibanValidation", + "type": { + "kind": "UNION", + "name": "IbanValidationResult", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "IbanValidationInput", + "ofType": null + } + } + ] + }, + { + "name": "accountHolder", + "type": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "accountHolders", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolderConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountHolderFilterInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountHolderOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "accountMembership", + "type": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "accountMemberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembershipConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipsFilterInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "accounts", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountFilterInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "beneficiaryVerification", + "type": { + "kind": "UNION", + "name": "BeneficiaryVerificationResult", + "ofType": null + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "BeneficiaryVerificationInput", + "ofType": null + } + } + ] + }, + { + "name": "card", + "type": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + }, + "args": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "cards", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + } + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "onboardings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OnboardingConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "OnboardingFiltersInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "OnboardingOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "supportingDocumentCollection", + "type": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "accountStatement", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Statement", + "ofType": null + } + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "payment", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "payments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "transaction", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + } + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "transactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "accountInvoice", + "type": { + "kind": "OBJECT", + "name": "Invoice", + "ofType": null + }, + "args": [ + { + "name": "invoiceId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "capitalDepositCase", + "type": { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "capitalDepositCases", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositCaseConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "CapitalDepositCaseFiltersInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "CapitalDepositCaseOrderByInput", + "ofType": null + } + } + ] + }, + { + "name": "capitalDepositDocument", + "type": { + "kind": "OBJECT", + "name": "CapitalDepositDocument", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "shareholder", + "type": { + "kind": "OBJECT", + "name": "Shareholder", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "cardSettingsByProjectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardSettings", + "ofType": null + } + }, + "args": [ + { + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardSettingsByProjectIdInput", + "ofType": null + } + } + ] + }, + { + "name": "cardProductById", + "type": { + "kind": "UNION", + "name": "CardProductByIdResultPayload", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "name": "projectInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ProjectInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "consents", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ConsentConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "ConsentsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "users", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "args": [ + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilterInput", + "ofType": null + } + }, + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + }, + "args": [ + { + "name": "receivedDirectDebitMandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "merchantProfile", + "type": { + "kind": "OBJECT", + "name": "MerchantProfile", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "fundingSource", + "type": { + "kind": "INTERFACE", + "name": "FundingSource", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "internationalBeneficiaryDynamicForms", + "type": { + "kind": "OBJECT", + "name": "InternationalBeneficiaryDynamicForms", + "ofType": null + }, + "args": [ + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "InternationalCreditTransferDisplayLanguage", + "ofType": null + } + }, + { + "name": "dynamicFields", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryDetailsInput", + "ofType": null + } + } + } + } + ] + }, + { + "name": "internationalCreditTransferTransactionDetailsDynamicForm", + "type": { + "kind": "OBJECT", + "name": "InternationalCreditTransferDynamicForm", + "ofType": null + }, + "args": [ + { + "name": "targetAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "InternationalCreditTransferDisplayLanguage", + "ofType": null + } + }, + { + "name": "internationalBeneficiary", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalBeneficiaryInput", + "ofType": null + } + } + }, + { + "name": "refreshableFields", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InternationalCreditTransferDetailsInput", + "ofType": null + } + } + } + } + ] + }, + { + "name": "internationalCreditTransferQuote", + "type": { + "kind": "OBJECT", + "name": "InternationalCreditTransferQuote", + "ofType": null + }, + "args": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "targetAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "InternationalCreditTransferDisplayLanguage", + "ofType": null + } + } + ] + }, + { + "name": "standingOrder", + "type": { + "kind": "OBJECT", + "name": "StandingOrder", + "ofType": null + }, + "args": [ + { + "name": "standingOrderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "name": "webhookEventLog", + "type": { + "kind": "OBJECT", + "name": "WebhookEventLog", + "ofType": null + }, + "args": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RadioField", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "refreshDynamicFieldsOnChange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "required", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "allowedValues", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AllowedValue", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Field" + } + ] + }, + { + "kind": "OBJECT", + "name": "Reachability", + "fields": [ + { + "name": "sepaCreditTransferInst", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sepaDirectDebitCore", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sepaDirectDebitB2b", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sepaCreditTransfer", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INTERFACE", + "name": "Reason", + "fields": [ + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CloseAccountReason" + }, + { + "kind": "OBJECT", + "name": "SuspendAccountReason" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ReasonInput", + "inputFields": [ + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "InternalReceivedDirectDebitMandate" + }, + { + "kind": "OBJECT", + "name": "SEPAReceivedDirectDebitMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateAlreadyExistRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateCanceledRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotB2bRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateScheme", + "enumValues": [ + { + "name": "SepaDirectDebitB2b" + }, + { + "name": "SepaDirectDebitCore" + } + ] + }, + { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Suspended" + }, + { + "name": "Canceled" + }, + { + "name": "ConsentInitiationPending" + }, + { + "name": "ConsentPending" + } + ] + }, + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoCanceled" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoConsentInitiationPending" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoConsentPending" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoEnabled" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoSuspended" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoCanceled", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoConsentInitiationPending", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoConsentPending", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoEnabled", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateStatusInfoSuspended", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReceivedDirectDebitMandateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "suspendedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "RefundInput", + "inputFields": [ + { + "name": "refundTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RefundTransaction", + "ofType": null + } + } + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "RefundPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RefundSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "RefundRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "RefundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "RefundRejectionCode", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "RefundRejectionCode", + "enumValues": [ + { + "name": "TransactionNotFound" + }, + { + "name": "TransactionNonRefundable" + }, + { + "name": "ServerError" + } + ] + }, + { + "kind": "OBJECT", + "name": "RefundSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "RefundTransaction", + "inputFields": [ + { + "name": "originTransactionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "executionDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "RejectedFundingSourceReason", + "enumValues": [ + { + "name": "AccountVerificationRejected" + } + ] + }, + { + "kind": "OBJECT", + "name": "RejectedFundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rejectedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reasonCode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "RejectedFundingSourceReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "RejectedMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rejectedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "RejectedMerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rejectedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "RejectedReasonCode", + "enumValues": [ + { + "name": "AccountClosed" + }, + { + "name": "AccountHolderDeceased" + }, + { + "name": "AccountMembershipRefused" + }, + { + "name": "AccountSuspended" + }, + { + "name": "AccountUnknown" + }, + { + "name": "AmountMismatch" + }, + { + "name": "BankRefused" + }, + { + "name": "BeneficiaryBankNotReachable" + }, + { + "name": "BeneficiaryMissingOrIncorrect" + }, + { + "name": "CardExpired" + }, + { + "name": "CardPermanentlyBlocked" + }, + { + "name": "CardSuspended" + }, + { + "name": "CheckReceivedLate" + }, + { + "name": "CreditorBankOffline" + }, + { + "name": "CreditorBankTechnicalErrorOccurred" + }, + { + "name": "CreditorBankTimeout" + }, + { + "name": "DateMissing" + }, + { + "name": "DateInvalid" + }, + { + "name": "DebtorAccountClosed" + }, + { + "name": "DebtorAccountConsumer" + }, + { + "name": "DebtorAccountUnknown" + }, + { + "name": "DebtorBankOffline" + }, + { + "name": "DebtorBankTechnicalErrorOccurred" + }, + { + "name": "DebtorBankTimeout" + }, + { + "name": "DebtorDeceased" + }, + { + "name": "DebtorNameMissing" + }, + { + "name": "EndorsementMissing" + }, + { + "name": "FraudSuspected" + }, + { + "name": "IbanInvalid" + }, + { + "name": "IbanSuspended" + }, + { + "name": "InsufficientFunds" + }, + { + "name": "InvalidTransferDate" + }, + { + "name": "InvalidOrMissingAmount" + }, + { + "name": "MandateInvalid" + }, + { + "name": "NoMandate" + }, + { + "name": "PartnerRefused" + }, + { + "name": "PartnerTechnicalErrorOccurred" + }, + { + "name": "PeriodAmountLimitExceeded" + }, + { + "name": "PeriodNbTransactionLimitExceeded" + }, + { + "name": "ReasonNotSpecifiedByBank" + }, + { + "name": "ReasonNotSpecifiedByDebtor" + }, + { + "name": "RegulatoryReason" + }, + { + "name": "SignatureMissing" + }, + { + "name": "SuspiciousCheck" + }, + { + "name": "SwanOffline" + }, + { + "name": "SwanRefused" + }, + { + "name": "SwanTechnicalErrorOccurred" + }, + { + "name": "SwanTimeout" + }, + { + "name": "TermsAndConditionsLimitExceeded" + }, + { + "name": "TransactionAmountLimitExceeded" + }, + { + "name": "TransactionDuplicated" + }, + { + "name": "TransactionOnAccountTypeNotAllowed" + }, + { + "name": "TransactionTypeNotAllowed" + }, + { + "name": "CardNotActivated" + }, + { + "name": "InvalidPin" + }, + { + "name": "InvalidPinAttemptsExceeded" + }, + { + "name": "MerchantShouldResubmitAuthorization" + }, + { + "name": "InvalidExpirationDate" + }, + { + "name": "InvalidSecurityNumber" + }, + { + "name": "PinRequiredForFurtherTransaction" + }, + { + "name": "RetryWithChipAndPin" + } + ] + }, + { + "kind": "OBJECT", + "name": "RejectedTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "RejectedReasonCode", + "ofType": null + } + }, + "args": [] + }, + { + "name": "hasFallback", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "RejectedVerificationReason", + "enumValues": [ + { + "name": "HolderDidNotMatch" + } + ] + }, + { + "kind": "OBJECT", + "name": "RejectedVerificationStatusInfo", + "fields": [ + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "RejectedVerificationReason", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rejectedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Rejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AccountHolderNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountHolderTypeIndividualRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeUpdatedRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotReadyToBeBoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotEligibleRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountVerificationAlreadyRejectedRejection" + }, + { + "kind": "OBJECT", + "name": "AccountVerificationWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ActionNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "AddingCardsToDifferentAccountsRejection" + }, + { + "kind": "OBJECT", + "name": "AlreadyValidPhysicalCardRejection" + }, + { + "kind": "OBJECT", + "name": "ApplePayNotAllowedForProjectRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "BadRequestRejection" + }, + { + "kind": "OBJECT", + "name": "CannotActivatePhysicalCardRejection" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploaded" + }, + { + "kind": "OBJECT", + "name": "CapitalDepositDocumentCanNotBeUploadedRejection" + }, + { + "kind": "OBJECT", + "name": "CardCanNotBeDigitalizedRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductNotApplicableToPhysicalCardsRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "CardProductUsedRejection" + }, + { + "kind": "OBJECT", + "name": "CardWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "CheckRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentsAlreadyLinkedToMultiConsentRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentsNotAllInCreatedStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentsNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ConsentTypeNotSupportedByServerConsentRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountClosedRejection" + }, + { + "kind": "OBJECT", + "name": "DebtorAccountNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "DigitalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "EnabledCardDesignNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountAlreadyExistsRejection" + }, + { + "kind": "OBJECT", + "name": "ExternalAccountBalanceAlreadyExistsRejection" + }, + { + "kind": "OBJECT", + "name": "FeeSettingsNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "FundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "FundingLimitSettingsChangeRequestBadAmountRejection" + }, + { + "kind": "OBJECT", + "name": "FundingSourceNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "FundingSourceWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "GlobalFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "GlobalInstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "IBANNotReachableRejection" + }, + { + "kind": "OBJECT", + "name": "IBANNotValidRejection" + }, + { + "kind": "OBJECT", + "name": "IbanValidationRejection" + }, + { + "kind": "OBJECT", + "name": "IdentityAlreadyBindToAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "InstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "InsufficientFundsRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidArgumentRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidPhoneNumberRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidSirenNumberRejection" + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "MerchantPaymentMethodNotActiveRejection" + }, + { + "kind": "OBJECT", + "name": "MerchantProfileWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "MissingMandatoryFieldRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "NotReachableConsentStatusRejection" + }, + { + "kind": "OBJECT", + "name": "NotSupportedCountryRejection" + }, + { + "kind": "OBJECT", + "name": "OnboardingNotCompletedRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMandateReferenceAlreadyUsedRejection" + }, + { + "kind": "OBJECT", + "name": "PaymentMethodNotCompatibleRejection" + }, + { + "kind": "OBJECT", + "name": "PermissionCannotBeGrantedRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "PINNotReadyRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectInstantFundingLimitExceededRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectInvalidStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectNotFound" + }, + { + "kind": "OBJECT", + "name": "ProjectNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsForbiddenError" + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsNotFound" + }, + { + "kind": "OBJECT", + "name": "ProjectSettingsStatusNotReachable" + }, + { + "kind": "OBJECT", + "name": "PublicOnboardingDisabledRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateAlreadyExistRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateCanceledRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotB2bRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "RefundRejection" + }, + { + "kind": "OBJECT", + "name": "RestrictedToUserRejection" + }, + { + "kind": "OBJECT", + "name": "SchemeWrongRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentCredentialsNotValidOrOutdatedRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForConsentOperationRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForProjectRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialMissingRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectSettingsNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ServerConsentSignatureNotValidRejection" + }, + { + "kind": "OBJECT", + "name": "StandingOrderNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowDeletionRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowUpdateRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "SuspendReceivedDirectDebitMandatedRejection" + }, + { + "kind": "OBJECT", + "name": "SwanTCUDocumentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SwanTCUDocumentStatusNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyChildConsentsRejection" + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection" + }, + { + "kind": "OBJECT", + "name": "TransactionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "UpdateUserConsentSettingsTokenRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToDisableItsOwnAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToManageAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToSuspendItsOwnAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + }, + { + "kind": "OBJECT", + "name": "WrongValueProvidedRejection" + } + ] + }, + { + "kind": "ENUM", + "name": "ReleasedReason", + "enumValues": [ + { + "name": "Captured" + }, + { + "name": "Expired" + }, + { + "name": "AdviceReceived" + }, + { + "name": "MerchantReleased" + }, + { + "name": "ManuallyReleased" + }, + { + "name": "Other" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReleasedTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "releaseDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ReleasedReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReportDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "files", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ReportDocumentFile", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ReportDocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DocumentFile" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReportExchangeRate", + "fields": [ + { + "name": "sourceCurrency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "exchangeRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + }, + { + "name": "unitCurrency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "targetCurrency", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "args": [] + }, + { + "name": "quotationDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "contractIdentification", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMerchantPaymentMethodsInput", + "inputFields": [ + { + "name": "merchantProfileId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "internalDirectDebitStandard", + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitStandardPaymentMethodInput", + "ofType": null + } + }, + { + "name": "internalDirectDebitB2B", + "type": { + "kind": "INPUT_OBJECT", + "name": "InternalDirectDebitB2BPaymentMethodInput", + "ofType": null + } + }, + { + "name": "sepaDirectDebitCore", + "type": { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitCorePaymentMethodInput", + "ofType": null + } + }, + { + "name": "sepaDirectDebitB2B", + "type": { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitB2BPaymentMethodInput", + "ofType": null + } + }, + { + "name": "check", + "type": { + "kind": "INPUT_OBJECT", + "name": "CheckPaymentMethodInput", + "ofType": null + } + }, + { + "name": "card", + "type": { + "kind": "INPUT_OBJECT", + "name": "CardPaymentMethodInput", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "RequestMerchantPaymentMethodsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RequestMerchantPaymentMethodsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "NotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "RequestMerchantPaymentMethodsSuccessPayload", + "fields": [ + { + "name": "merchantProfile", + "type": { + "kind": "OBJECT", + "name": "MerchantProfile", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RequestMerchantProfileUpdate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantProfileId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "merchantWebsite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "merchantLogoUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "RequestMerchantProfileUpdateStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "productType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProductType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedMonthlyPaymentVolume", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "expectedAverageBasket", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMerchantProfileUpdateInput", + "inputFields": [ + { + "name": "merchantProfileId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "merchantName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "merchantWebsite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "productType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProductType", + "ofType": null + } + } + }, + { + "name": "expectedMonthlyPaymentVolume", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "expectedAverageBasket", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + }, + { + "name": "merchantLogo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "RequestMerchantProfileUpdatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RequestMerchantProfileUpdateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + } + ] + }, + { + "kind": "ENUM", + "name": "RequestMerchantProfileUpdateStatus", + "enumValues": [ + { + "name": "PendingReview" + }, + { + "name": "Enabled" + }, + { + "name": "Rejected" + } + ] + }, + { + "kind": "OBJECT", + "name": "RequestMerchantProfileUpdateSuccessPayload", + "fields": [ + { + "name": "requestMerchantProfileUpdate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "RequestMerchantProfileUpdate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestSupportingDocumentCollectionReviewInput", + "inputFields": [ + { + "name": "supportingDocumentCollectionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "RequestSupportingDocumentCollectionReviewPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "RequestSupportingDocumentCollectionReviewSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "RequestSupportingDocumentCollectionReviewSuccessPayload", + "fields": [ + { + "name": "supportingDocumentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ResidencePermitDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "issueDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "expiryDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "mrz", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "files", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ResidencePermitDocumentFile", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ResidencePermitDocumentFile", + "fields": [ + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "DocumentFileSide", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DocumentFile" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "inputFields": [ + { + "name": "addressLine1", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "addressLine2", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "postalCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "country", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "RestrictedTo", + "fields": [ + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "RestrictedToInput", + "inputFields": [ + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "PhoneNumber", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "RestrictedToUserRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ResumeAccountMembershipInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ResumeAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ResumeAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToManageAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ResumeAccountMembershipSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ResumePhysicalCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ResumePhysicalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ResumePhysicalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardWrongStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ResumePhysicalCardSuccessPayload", + "fields": [ + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ReviewProjectCardSettingsInput", + "inputFields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "backgroundType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProjectCardSettingsBackgroundType", + "ofType": null + } + } + }, + { + "name": "logo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "zoomRatioProjectLogo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "ReviewProjectCardSettingsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ReviewProjectCardSettingsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ReviewProjectCardSettingsSuccessPayload", + "fields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cardSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardSettings", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "RollingReserve", + "fields": [ + { + "name": "percentage", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingDays", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ScheduleStandingOrderInput", + "inputFields": [ + { + "name": "amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + }, + { + "name": "targetAvailableBalance", + "type": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + }, + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderPeriod", + "ofType": null + } + } + }, + { + "name": "firstExecutionDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "lastExecutionDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "sepaBeneficiary", + "type": { + "kind": "INPUT_OBJECT", + "name": "SepaBeneficiaryInput", + "ofType": null + } + }, + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "creditTransferMode", + "type": { + "kind": "ENUM", + "name": "CreditTransferMode", + "ofType": null + }, + "defaultValue": "Regular" + } + ] + }, + { + "kind": "UNION", + "name": "ScheduleStandingOrderPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ScheduleStandingOrderSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidArgumentRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ScheduleStandingOrderSuccessPayload", + "fields": [ + { + "name": "standingOrder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StandingOrder", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Scheme", + "fields": [ + { + "name": "fields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "Field", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "title", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "InternationalCreditTransferRouteInput", + "ofType": null + } + }, + "args": [] + }, + { + "name": "remainingFieldsToRefreshCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SchemeWrongRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SelectField", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "refreshDynamicFieldsOnChange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "required", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "allowedValues", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AllowedValue", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Field" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPABeneficiary", + "fields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "isMyOwnIban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Beneficiary" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SepaBeneficiaryInput", + "inputFields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "address", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + }, + { + "name": "isMyOwnIban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "save", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ] + }, + { + "kind": "SCALAR", + "name": "SepaCreditorIdentifier" + }, + { + "kind": "INTERFACE", + "name": "SEPACreditTransferCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SEPACreditTransferInCreditor" + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInternalOutCreditor" + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferOutCreditor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "SEPACreditTransferDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SEPACreditTransferInDebtor" + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInternalInDebtor" + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferOutDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInternalInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferInternalOutCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + }, + { + "name": "beneficiary", + "type": { + "kind": "OBJECT", + "name": "InternalBeneficiary", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferOutCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "beneficiary", + "type": { + "kind": "OBJECT", + "name": "SEPABeneficiary", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferOutDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPACreditTransferDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SEPACreditTransferCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SEPACreditTransferDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "SepaDirectDebitB2BMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + }, + { + "name": "useSwanSepaCreditorIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sepaCreditorIdentifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitB2BPaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "useSwanSepaCreditorIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": "true" + }, + { + "name": "sepaCreditorIdentifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "SepaDirectDebitCoreMerchantPaymentMethod", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "methodId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rollingReserve", + "type": { + "kind": "OBJECT", + "name": "RollingReserve", + "ofType": null + }, + "args": [] + }, + { + "name": "useSwanSepaCreditorIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sepaCreditorIdentifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethod" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitCorePaymentMethodInput", + "inputFields": [ + { + "name": "activate", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "useSwanSepaCreditorIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": "true" + }, + { + "name": "sepaCreditorIdentifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INTERFACE", + "name": "SEPADirectDebitCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SEPADirectDebitInCreditor" + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitOutCreditor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "SEPADirectDebitDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SEPADirectDebitInDebtor" + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitOutDebtor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitInCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitInDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "beneficiary", + "type": { + "kind": "OBJECT", + "name": "SEPABeneficiary", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitDebtor" + } + ] + }, + { + "kind": "INTERFACE", + "name": "SEPADirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SEPAPaymentDirectDebitMandate" + }, + { + "kind": "OBJECT", + "name": "SEPAReceivedDirectDebitMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitOutCreditor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "beneficiary", + "type": { + "kind": "OBJECT", + "name": "SEPABeneficiary", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitOutDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maskedIBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "virtualIBANEntryId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitDebtor" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SepaDirectDebitPaymentCollectionInput", + "inputFields": [ + { + "name": "mandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "SEPADirectDebitScheme", + "enumValues": [ + { + "name": "SepaDirectDebitCore" + }, + { + "name": "SepaDirectDebitB2b" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitTransaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SEPADirectDebitCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SEPADirectDebitDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "mandate", + "type": { + "kind": "INTERFACE", + "name": "SEPADirectDebitMandate", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "reservedAmountReleasedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "returnReason", + "type": { + "kind": "ENUM", + "name": "TransactionReasonCode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Transaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "scheme", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPAPaymentMandateScheme", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "PaymentMandateStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPAPaymentMandateSequence", + "ofType": null + } + }, + "args": [] + }, + { + "name": "mandateDocumentUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "debtor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SEPAPaymentMandateDebtor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ultimateCreditorName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SEPAPaymentMandateCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "PaymentDirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "PaymentMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentMandateCreditor", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "SepaCreditorIdentifier", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateCreditor" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPAPaymentMandateDebtor", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "country", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "PaymentMandateDebtor" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SepaPaymentMandateDebtorInput", + "inputFields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "IBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "SEPAPaymentMandateScheme", + "enumValues": [ + { + "name": "SepaDirectDebitCore" + }, + { + "name": "SepaDirectDebitB2b" + } + ] + }, + { + "kind": "ENUM", + "name": "SEPAPaymentMandateSequence", + "enumValues": [ + { + "name": "Recurrent" + }, + { + "name": "OneOff" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPAReceivedDirectDebitMandate", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "transactions", + "type": { + "kind": "OBJECT", + "name": "TransactionConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "version", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "scheme", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPAReceivedDirectDebitMandateScheme", + "ofType": null + } + }, + "args": [] + }, + { + "name": "sequence", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SEPAReceivedDirectDebitMandateSequence", + "ofType": null + } + }, + "args": [] + }, + { + "name": "creditor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SEPAReceivedDirectDebitMandateCreditor", + "ofType": null + } + }, + "args": [] + }, + { + "name": "ultimateCreditorName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "signatureDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "expiredAt", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandateStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SEPADirectDebitMandate" + }, + { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate" + } + ] + }, + { + "kind": "OBJECT", + "name": "SEPAReceivedDirectDebitMandateCreditor", + "fields": [ + { + "name": "identifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "address", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "SEPAReceivedDirectDebitMandateScheme", + "enumValues": [ + { + "name": "SepaDirectDebitB2b" + }, + { + "name": "SepaDirectDebitCore" + } + ] + }, + { + "kind": "ENUM", + "name": "SEPAReceivedDirectDebitMandateSequence", + "enumValues": [ + { + "name": "OneOff" + }, + { + "name": "Recurrent" + } + ] + }, + { + "kind": "SCALAR", + "name": "SepaReference" + }, + { + "kind": "OBJECT", + "name": "ServerConsentCredentialsNotValidOrOutdatedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForConsentOperationRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentNotAllowedForProjectRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialMissingRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectCredentialNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentProjectSettingsNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ServerConsentSignatureNotValidRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "Shareholder", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "capitalDepositAmount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboarding", + "type": { + "kind": "OBJECT", + "name": "Onboarding", + "ofType": null + }, + "args": [] + }, + { + "name": "accountId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ShareholderStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "info", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "UNION", + "name": "ShareholderInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "documents", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositDocument", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "relatedCapitalDepositCase", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CapitalDepositCase", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "ShareholderInfo", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "IndividualShareholder" + }, + { + "kind": "OBJECT", + "name": "CompanyShareholder" + } + ] + }, + { + "kind": "ENUM", + "name": "ShareholderStatus", + "enumValues": [ + { + "name": "PendingOnboarding" + }, + { + "name": "WaitingForVerification" + }, + { + "name": "WaitingForTransfer" + }, + { + "name": "CapitalTransferred" + }, + { + "name": "CapitalFundsWiredToNotary" + } + ] + }, + { + "kind": "ENUM", + "name": "ShareholderType", + "enumValues": [ + { + "name": "Individual" + }, + { + "name": "Company" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SignatureData", + "inputFields": [ + { + "name": "nonce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "nonceSignature", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "certificates", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Certificate", + "ofType": null + } + } + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "SimulationCardType", + "enumValues": [ + { + "name": "Physical" + }, + { + "name": "Virtual" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SingleUseVirtualCardConfigInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "OBJECT", + "name": "Spending", + "fields": [ + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SpendingLimitPeriod", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SpendingLimit", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SpendingLimitType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SpendingLimitPeriod", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "inputFields": [ + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SpendingLimitPeriodInput", + "ofType": null + } + } + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AmountInput", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "SpendingLimitPeriod", + "enumValues": [ + { + "name": "Monthly" + }, + { + "name": "Weekly" + }, + { + "name": "Daily" + }, + { + "name": "Always" + } + ] + }, + { + "kind": "ENUM", + "name": "SpendingLimitPeriodInput", + "enumValues": [ + { + "name": "Monthly" + }, + { + "name": "Weekly" + }, + { + "name": "Daily" + }, + { + "name": "Always" + } + ] + }, + { + "kind": "ENUM", + "name": "SpendingLimitType", + "enumValues": [ + { + "name": "AccountHolder" + }, + { + "name": "Partner" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrder", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "payments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PaymentConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentOrderByInput", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentFiltersInput", + "ofType": null + } + } + ] + }, + { + "name": "reference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "targetAvailableBalance", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "period", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderPeriod", + "ofType": null + } + }, + "args": [] + }, + { + "name": "firstExecutionDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "lastExecutionDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "sepaBeneficiary", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SEPABeneficiary", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "StandingOrderStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdBy", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "args": [] + }, + { + "name": "nextExecutionDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "creditTransferMode", + "type": { + "kind": "ENUM", + "name": "CreditTransferMode", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StandingOrderCanceledStatusInfo", + "fields": [ + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StandingOrderStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrderConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StandingOrderEdge", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrderConsentPendingStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StandingOrderStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrderEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StandingOrder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrderEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StandingOrderStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "StandingOrderNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "StandingOrderPeriod", + "enumValues": [ + { + "name": "Daily" + }, + { + "name": "Weekly" + }, + { + "name": "Monthly" + } + ] + }, + { + "kind": "ENUM", + "name": "StandingOrderStatus", + "enumValues": [ + { + "name": "ConsentPending" + }, + { + "name": "Enabled" + }, + { + "name": "Canceled" + } + ] + }, + { + "kind": "INTERFACE", + "name": "StandingOrderStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StandingOrderStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "StandingOrderCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "StandingOrderConsentPendingStatusInfo" + }, + { + "kind": "OBJECT", + "name": "StandingOrderEnabledStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "StartedIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "Statement", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + }, + { + "name": "openingBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "closingBalance", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "openingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "closingDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "StatementStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "period", + "type": { + "kind": "ENUM", + "name": "StatementPeriod", + "ofType": null + }, + "args": [] + }, + { + "name": "totalCredits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalDebits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fees", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "INTERFACE", + "name": "StatementInfo", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "StatementConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "StatementEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "StatementEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Statement", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "StatementFiltersInput", + "inputFields": [ + { + "name": "isAfterUpdatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "isBeforeUpdatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "period", + "type": { + "kind": "ENUM", + "name": "StatementPeriod", + "ofType": null + } + } + ] + }, + { + "kind": "INTERFACE", + "name": "StatementInfo", + "fields": [ + { + "name": "type", + "type": { + "kind": "ENUM", + "name": "StatementType", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CsvStatement" + }, + { + "kind": "OBJECT", + "name": "PdfStatement" + } + ] + }, + { + "kind": "ENUM", + "name": "StatementPeriod", + "enumValues": [ + { + "name": "Monthly" + }, + { + "name": "Custom" + } + ] + }, + { + "kind": "ENUM", + "name": "StatementStatus", + "enumValues": [ + { + "name": "Available" + }, + { + "name": "Failed" + }, + { + "name": "Pending" + } + ] + }, + { + "kind": "ENUM", + "name": "StatementType", + "enumValues": [ + { + "name": "PDF" + }, + { + "name": "CSV" + } + ] + }, + { + "kind": "ENUM", + "name": "StatusText", + "enumValues": [ + { + "name": "Success" + }, + { + "name": "Failure" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocument", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentType", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentType", + "ofType": null + }, + "args": [] + }, + { + "name": "supportingDocumentPurpose", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentPurposeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentAccountHolder", + "fields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocuments", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocument", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "requiredSupportingDocumentPurposes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentPurpose", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "accountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentAccountHolder", + "ofType": null + } + }, + "args": [] + }, + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentOnboarding", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionApprovedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "approvedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionCanceledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "canceledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionPendingReviewStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionRejectedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "rejectedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "enumValues": [ + { + "name": "WaitingForDocument" + }, + { + "name": "PendingReview" + }, + { + "name": "Approved" + }, + { + "name": "Canceled" + }, + { + "name": "Rejected" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollectionStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollectionStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "supportingDocumentCollection", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentCollection", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionApprovedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionCanceledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionPendingReviewStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionRejectedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionWaitingForDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusNotAllowedRejection", + "fields": [ + { + "name": "oldStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "newStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionWaitingForDocumentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentCollectionStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentCollectMode", + "enumValues": [ + { + "name": "API" + }, + { + "name": "EndCustomer" + }, + { + "name": "Partner" + } + ] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentCommunicationLanguageSettings", + "enumValues": [ + { + "name": "en" + }, + { + "name": "fr" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentNotFoundRejection", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentNotUploadedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentOnboarding", + "fields": [ + { + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentPostField", + "fields": [ + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "value", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentPurpose", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentPurposeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "acceptableSupportingDocumentTypes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentType", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentPurposeEnum", + "enumValues": [ + { + "name": "AssociationRegistration" + }, + { + "name": "Banking" + }, + { + "name": "CompanyRegistration" + }, + { + "name": "GeneralAssemblyMinutes" + }, + { + "name": "Other" + }, + { + "name": "PowerOfAttorney" + }, + { + "name": "ProofOfCompanyAddress" + }, + { + "name": "ProofOfCompanyIncome" + }, + { + "name": "ProofOfIdentity" + }, + { + "name": "ProofOfIndividualAddress" + }, + { + "name": "ProofOfIndividualIncome" + }, + { + "name": "ProofOfOriginOfFunds" + }, + { + "name": "SignedStatus" + }, + { + "name": "UBODeclaration" + }, + { + "name": "SwornStatement" + }, + { + "name": "LegalRepresentativeProofOfIdentity" + }, + { + "name": "UltimateBeneficialOwnerProofOfIdentity" + }, + { + "name": "NIFAccreditationCard" + }, + { + "name": "PresidentDecisionOfAppointment" + }, + { + "name": "AdministratorDecisionOfAppointment" + }, + { + "name": "FinancialStatements" + }, + { + "name": "UltimateBeneficialOwnerProofOfAddress" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentRefusedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "refusedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "filename", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentSettings", + "fields": [ + { + "name": "collectMode", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectMode", + "ofType": null + } + }, + "args": [] + }, + { + "name": "communicationLanguage", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentCommunicationLanguageSettings", + "ofType": null + }, + "args": [] + }, + { + "name": "emailContact", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "enumValues": [ + { + "name": "WaitingForUpload" + }, + { + "name": "Uploaded" + }, + { + "name": "Validated" + }, + { + "name": "Refused" + }, + { + "name": "NotUploaded" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowDeletionRejection", + "fields": [ + { + "name": "supportingDocument", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocument", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowUpdateRejection", + "fields": [ + { + "name": "supportingDocument", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocument", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SupportingDocumentNotUploadedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentRefusedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentValidatedStatusInfo" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentWaitingForUploadStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusNotAllowedRejection", + "fields": [ + { + "name": "oldStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "newStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "SupportingDocumentType", + "enumValues": [ + { + "name": "Selfie" + }, + { + "name": "Passport" + }, + { + "name": "NationalIdCard" + }, + { + "name": "ResidentPermit" + }, + { + "name": "DrivingLicense" + }, + { + "name": "UtilityBill" + }, + { + "name": "PhoneBill" + }, + { + "name": "RentReceipt" + }, + { + "name": "HomeInsurance" + }, + { + "name": "IncomeTaxReturn" + }, + { + "name": "PaySlip" + }, + { + "name": "RegisterExtract" + }, + { + "name": "ArticlesOfIncorporation" + }, + { + "name": "CapitalShareDepositCertificate" + }, + { + "name": "UBODeclaration" + }, + { + "name": "JOAFFEExtract" + }, + { + "name": "CompanyLeaseAgreement" + }, + { + "name": "BankStatement" + }, + { + "name": "BankAccountDetails" + }, + { + "name": "PowerOfAttorney" + }, + { + "name": "CorporateIncomeTaxReturn" + }, + { + "name": "Other" + }, + { + "name": "ByLaws" + }, + { + "name": "AccountStatement" + }, + { + "name": "DeedOfDonation" + }, + { + "name": "DeedOfSale" + }, + { + "name": "DeedOfSuccession" + }, + { + "name": "LoanContract" + }, + { + "name": "NotarialDeed" + }, + { + "name": "SwornStatement" + }, + { + "name": "MeetingMinutes" + }, + { + "name": "NIFAccreditationCard" + }, + { + "name": "DecisionOfAppointment" + }, + { + "name": "FinancialStatements" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "filename", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadInfo", + "fields": [ + { + "name": "url", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "fields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentPostField", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentUploadNotAllowedRejection", + "fields": [ + { + "name": "supportingDocumentCollectionStatus", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentCollectionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentValidatedStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "downloadUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "validatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "filename", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentWaitingForUploadStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SupportingDocumentStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "upload", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocumentUploadInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SupportingDocumentStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SuspendAccountMembershipInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "SuspendAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SuspendAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToManageAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToSuspendItsOwnAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendAccountMembershipSuccessPayload", + "fields": [ + { + "name": "accountMembership", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembership", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SuspendAccountReason", + "fields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SuspendAccountReasonType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Reason" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SuspendAccountReasonInput", + "inputFields": [ + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SuspendAccountReasonType", + "ofType": null + } + } + }, + { + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "SuspendAccountReasonType", + "enumValues": [ + { + "name": "SuspendRequested" + } + ] + }, + { + "kind": "UNION", + "name": "SuspendAccountStatusReason", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SuspendAccountReason" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SuspendCardProductInput", + "inputFields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "SuspendCardProductPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SuspendCardProductSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "CardProductNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendCardProductSuccessPayload", + "fields": [ + { + "name": "cardProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardProduct", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SuspendedFundingLimitSettingsStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingLimitSettingsStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingLimitSettingsStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendedFundingSourceStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FundingSourceStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "suspendedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FundingSourceStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendedMerchantPaymentMethodStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantPaymentMethodStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "suspendedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantPaymentMethodStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendedMerchantProfileStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "MerchantProfileStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "suspendedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MerchantProfileStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SuspendPhysicalCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "SuspendPhysicalCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SuspendPhysicalCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendPhysicalCardSuccessPayload", + "fields": [ + { + "name": "physicalCard", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PhysicalCard", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "SuspendReceivedDirectDebitMandatedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reason", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SuspendReceivedDirectDebitMandatedRejectionReason", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "SuspendReceivedDirectDebitMandatedRejectionReason", + "enumValues": [ + { + "name": "ReceivedDirectDebitMandateCanceled" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "SuspendReceivedDirectDebitMandateInput", + "inputFields": [ + { + "name": "receivedDirectDebitMandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "SuspendReceivedDirectDebitMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SuspendReceivedDirectDebitMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "SuspendReceivedDirectDebitMandatedRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateCanceledRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SuspendReceivedDirectDebitMandateSuccessPayload", + "fields": [ + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "SwanAccountBeneficiaryInput", + "inputFields": [ + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "AccountNumber", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "save", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ] + }, + { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "enumValues": [ + { + "name": "Pending" + }, + { + "name": "Valid" + }, + { + "name": "Invalid" + }, + { + "name": "Canceled" + }, + { + "name": "Expired" + }, + { + "name": "NotSupported" + }, + { + "name": "NotStarted" + }, + { + "name": "Started" + } + ] + }, + { + "kind": "OBJECT", + "name": "SwanTCUDocumentNotFoundRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "SwanTCUDocumentStatusNotAllowedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "TextField", + "fields": [ + { + "name": "displayFormat", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "example", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "key", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "maxLength", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "minLength", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "refreshDynamicFieldsOnChange", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "required", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "validationRegex", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Field" + } + ] + }, + { + "kind": "ENUM", + "name": "TitleEnum", + "enumValues": [ + { + "name": "Mr" + }, + { + "name": "Ms" + } + ] + }, + { + "kind": "SCALAR", + "name": "TokenRequestorId" + }, + { + "kind": "OBJECT", + "name": "TooManyChildConsentsRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "TooManyItemsRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "INTERFACE", + "name": "Transaction", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentMethodIdentifier", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "side", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionSide", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + }, + "args": [] + }, + { + "name": "amount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "paymentId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "payment", + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "counterparty", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bookedBalanceAfter", + "type": { + "kind": "OBJECT", + "name": "Amount", + "ofType": null + }, + "args": [] + }, + { + "name": "paymentProduct", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + }, + "args": [] + }, + { + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + "args": [] + }, + { + "name": "externalReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestedExecutionAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransactionId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "originTransaction", + "type": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CardTransaction" + }, + { + "kind": "OBJECT", + "name": "CheckTransaction" + }, + { + "kind": "OBJECT", + "name": "FeeTransaction" + }, + { + "kind": "OBJECT", + "name": "InternalCreditTransfer" + }, + { + "kind": "OBJECT", + "name": "InternalDirectDebitTransaction" + }, + { + "kind": "OBJECT", + "name": "InternationalCreditTransferTransaction" + }, + { + "kind": "OBJECT", + "name": "SEPACreditTransferTransaction" + }, + { + "kind": "OBJECT", + "name": "SEPADirectDebitTransaction" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionConnection", + "fields": [ + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "TransactionEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionEdge", + "fields": [ + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "Transaction", + "ofType": null + } + }, + "args": [] + }, + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "TransactionNotFoundRejection", + "fields": [ + { + "name": "transactionId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "TransactionReasonCode", + "enumValues": [ + { + "name": "AccountClosed" + }, + { + "name": "AccountHolderDeceased" + }, + { + "name": "AccountLimited" + }, + { + "name": "AccountSuspended" + }, + { + "name": "AccountUnknown" + }, + { + "name": "BankRefused" + }, + { + "name": "BeneficiaryAccountBlocked" + }, + { + "name": "BeneficiaryAccountClosed" + }, + { + "name": "BeneficiaryAccountIncorrect" + }, + { + "name": "BeneficiaryAccountUnknown" + }, + { + "name": "BeneficiaryBankBicInvalid" + }, + { + "name": "BeneficiaryBranchCodeInvalid" + }, + { + "name": "BeneficiaryPhoneNumberInvalid" + }, + { + "name": "BeneficiaryIdNumberInvalid" + }, + { + "name": "BeneficiaryRutNumberInvalid" + }, + { + "name": "BeneficiaryTaxIdInvalid" + }, + { + "name": "BeneficiaryTaxIdSuspended" + }, + { + "name": "BeneficiaryCurrencyInvalid" + }, + { + "name": "BeneficiaryBankNotReachable" + }, + { + "name": "BeneficiaryDeceased" + }, + { + "name": "CardExpired" + }, + { + "name": "CardNotActivated" + }, + { + "name": "CardPermanentlyBlocked" + }, + { + "name": "CardSuspended" + }, + { + "name": "CheckInvalid" + }, + { + "name": "CheckNumberInvalid" + }, + { + "name": "CreditorBankOffline" + }, + { + "name": "CreditorBankTechnicalErrorOccurred" + }, + { + "name": "CreditorBankTimeout" + }, + { + "name": "DebtorAccountBlocked" + }, + { + "name": "DebtorAccountClosed" + }, + { + "name": "DebtorAccountConsumer" + }, + { + "name": "DebtorAccountUnknown" + }, + { + "name": "DebtorBankOffline" + }, + { + "name": "DebtorBankTechnicalErrorOccurred" + }, + { + "name": "DebtorBankTimeout" + }, + { + "name": "DebtorDeceased" + }, + { + "name": "FundsAlreadyTransferredBack" + }, + { + "name": "InsufficientFunds" + }, + { + "name": "InvalidCreditorName" + }, + { + "name": "InvalidExpirationDate" + }, + { + "name": "InvalidPin" + }, + { + "name": "InvalidPinAttemptsExceeded" + }, + { + "name": "InvalidSecurityNumber" + }, + { + "name": "LegalOrBankDecision" + }, + { + "name": "MandateInvalid" + }, + { + "name": "MerchantShouldResubmitAuthorization" + }, + { + "name": "NoAnswerFromBeneficiary" + }, + { + "name": "NoOriginalTransactionReceived" + }, + { + "name": "PartnerRefused" + }, + { + "name": "PartnerTechnicalErrorOccurred" + }, + { + "name": "PeriodAmountLimitExceeded" + }, + { + "name": "PeriodNbTransactionLimitExceeded" + }, + { + "name": "PinRequiredForFurtherTransaction" + }, + { + "name": "ReasonNotSpecifiedByBank" + }, + { + "name": "ReasonNotSpecifiedByBeneficiary" + }, + { + "name": "ReasonNotSpecifiedByDebtor" + }, + { + "name": "ReasonNotSpecifiedByOriginator" + }, + { + "name": "RecallAccepted" + }, + { + "name": "RefundRequestedByDebtor" + }, + { + "name": "RefundRequestedByCreditor" + }, + { + "name": "RegulatoryReason" + }, + { + "name": "RlmcKeyInvalid" + }, + { + "name": "SwanOffline" + }, + { + "name": "SwanRefused" + }, + { + "name": "SwanTechnicalErrorOccurred" + }, + { + "name": "SwanTimeout" + }, + { + "name": "TechnicalIssue" + }, + { + "name": "TermsAndConditionsLimitExceeded" + }, + { + "name": "TransactionAmountIncorrect" + }, + { + "name": "TransactionAmountLimitExceeded" + }, + { + "name": "TargetCurrencyNotAvailable" + }, + { + "name": "TransactionDuplicated" + }, + { + "name": "TransactionOnAccountTypeNotAllowed" + }, + { + "name": "TransactionOnCardTypeNotAllowed" + }, + { + "name": "TransactionPurposeInvalid" + }, + { + "name": "TransactionReferenceInvalid" + }, + { + "name": "TransactionTypeNotAllowed" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionsFiltersInput", + "inputFields": [ + { + "name": "status", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + } + } + }, + { + "name": "paymentProduct", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PaymentProduct", + "ofType": null + } + } + } + }, + { + "name": "isAfterUpdatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "isBeforeUpdatedAt", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "type", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "ofType": null + } + } + } + }, + { + "name": "includeRejectedWithFallback", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "TransactionSide", + "enumValues": [ + { + "name": "Debit" + }, + { + "name": "Credit" + } + ] + }, + { + "kind": "ENUM", + "name": "TransactionsOrderByField", + "enumValues": [ + { + "name": "id" + }, + { + "name": "createdAt" + }, + { + "name": "updatedAt" + }, + { + "name": "executionDate" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionsOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "TransactionsOrderByField", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "ENUM", + "name": "TransactionStatus", + "enumValues": [ + { + "name": "Booked" + }, + { + "name": "Rejected" + }, + { + "name": "Pending" + }, + { + "name": "Canceled" + }, + { + "name": "Upcoming" + }, + { + "name": "Released" + } + ] + }, + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BookedTransactionStatusInfo" + }, + { + "kind": "OBJECT", + "name": "CanceledTransactionStatusInfo" + }, + { + "kind": "OBJECT", + "name": "PendingTransactionStatusInfo" + }, + { + "kind": "OBJECT", + "name": "RejectedTransactionStatusInfo" + }, + { + "kind": "OBJECT", + "name": "ReleasedTransactionStatusInfo" + }, + { + "kind": "OBJECT", + "name": "UpcomingTransactionStatusInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "TransactionTypeEnum", + "enumValues": [ + { + "name": "InternalCreditTransferOut" + }, + { + "name": "InternalCreditTransferOutReturn" + }, + { + "name": "InternalCreditTransferOutRecall" + }, + { + "name": "InternalCreditTransferIn" + }, + { + "name": "InternalCreditTransferInReturn" + }, + { + "name": "InternalCreditTransferInRecall" + }, + { + "name": "SepaCreditTransferOut" + }, + { + "name": "SepaInstantCreditTransferOut" + }, + { + "name": "SepaInstantCreditTransferIn" + }, + { + "name": "SepaCreditTransferOutReturn" + }, + { + "name": "SepaInstantCreditTransferOutRecall" + }, + { + "name": "SepaInstantCreditTransferInRecall" + }, + { + "name": "SepaCreditTransferOutRecall" + }, + { + "name": "SepaCreditTransferIn" + }, + { + "name": "SepaCreditTransferInReturn" + }, + { + "name": "SepaCreditTransferInRecall" + }, + { + "name": "FeesOut" + }, + { + "name": "FeesIn" + }, + { + "name": "SepaDirectDebitIn" + }, + { + "name": "SepaDirectDebitInReturn" + }, + { + "name": "SepaDirectDebitInReversal" + }, + { + "name": "SepaDirectDebitOut" + }, + { + "name": "SepaDirectDebitOutReturn" + }, + { + "name": "SepaDirectDebitOutReversal" + }, + { + "name": "CardOutAuthorization" + }, + { + "name": "CardOutDebit" + }, + { + "name": "CardOutDebitReversal" + }, + { + "name": "CardOutCredit" + }, + { + "name": "CardOutCreditReversal" + }, + { + "name": "InternalDirectDebitIn" + }, + { + "name": "InternalDirectDebitInReturn" + }, + { + "name": "InternalDirectDebitOut" + }, + { + "name": "InternalDirectDebitOutReturn" + }, + { + "name": "CheckIn" + }, + { + "name": "CheckInReturn" + }, + { + "name": "InternationalCreditTransferIn" + }, + { + "name": "InternationalCreditTransferOut" + }, + { + "name": "InternationalCreditTransferInReturn" + }, + { + "name": "InternationalCreditTransferOutReturn" + } + ] + }, + { + "kind": "ENUM", + "name": "TypeOfRepresentation", + "enumValues": [ + { + "name": "LegalRepresentative" + }, + { + "name": "PowerOfAttorney" + } + ] + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialDirectOwnerCompanyInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyShareRatio", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "registrationNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "UltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialDirectOwnerIndividualInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyShareRatio", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "UltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialIndirectOwnerCompanyInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyReference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyShareRatio", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + }, + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "registrationNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "UltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialIndirectOwnerIndividualInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyReference", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyShareRatio", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "UltimateBeneficialOwnerInfo" + } + ] + }, + { + "kind": "INTERFACE", + "name": "UltimateBeneficialOwnerInfo", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "type", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parentCompanyShareRatio", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UltimateBeneficialDirectOwnerCompanyInfo" + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialDirectOwnerIndividualInfo" + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialIndirectOwnerCompanyInfo" + }, + { + "kind": "OBJECT", + "name": "UltimateBeneficialIndirectOwnerIndividualInfo" + } + ] + }, + { + "kind": "ENUM", + "name": "UltimateBeneficialOwnerType", + "enumValues": [ + { + "name": "DirectIndividual" + }, + { + "name": "DirectCompany" + }, + { + "name": "IndirectIndividual" + }, + { + "name": "IndirectCompany" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpcomingTransactionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "TransactionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "executionDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "TransactionStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountHolderInput", + "inputFields": [ + { + "name": "accountHolderId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateAccountHolderPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateAccountHolderSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountHolderNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateAccountHolderSuccessPayload", + "fields": [ + { + "name": "accountHolder", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountHolder", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountInput", + "inputFields": [ + { + "name": "accountId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "ENUM", + "name": "AccountLanguage", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountMembershipInput", + "inputFields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "restrictedTo", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdatedRestrictedToInput", + "ofType": null + } + }, + { + "name": "canViewAccount", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageBeneficiaries", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canInitiatePayments", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageAccountMembership", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "canManageCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateAccountMembershipPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateAccountMembershipSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipCannotBeUpdatedRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InvalidPhoneNumberRejection" + }, + { + "kind": "OBJECT", + "name": "PermissionCannotBeGrantedRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToManageAccountMembershipRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateAccountMembershipSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "UNION", + "name": "UpdateAccountPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateAccountSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "BadAccountStatusRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateAccountSuccessPayload", + "fields": [ + { + "name": "account", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCardInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "cardContractExpiryDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "withdrawal", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "international", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "nonMainCurrencyTransactions", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "eCommerce", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "name": "spendingLimit", + "type": { + "kind": "INPUT_OBJECT", + "name": "SpendingLimitInput", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateCardPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateCardSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "AccountMembershipNotAllowedRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateCardSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCompanyOnboardingInput", + "inputFields": [ + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "accountCountry", + "type": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "registrationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "companyType", + "type": { + "kind": "ENUM", + "name": "CompanyType", + "ofType": null + } + }, + { + "name": "businessActivity", + "type": { + "kind": "ENUM", + "name": "BusinessActivity", + "ofType": null + } + }, + { + "name": "businessActivityDescription", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "monthlyPaymentVolume", + "type": { + "kind": "ENUM", + "name": "MonthlyPaymentVolume", + "ofType": null + } + }, + { + "name": "individualUltimateBeneficialOwners", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IndividualUltimateBeneficialOwnerInput", + "ofType": null + } + } + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "isRegistered", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "name": "onboardingId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "vatNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "legalRepresentativePersonalAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInformationInput", + "ofType": null + } + }, + { + "name": "typeOfRepresentation", + "type": { + "kind": "ENUM", + "name": "TypeOfRepresentation", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateCompanyOnboardingPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "UpdateCompanyOnboardingSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateCompanyOnboardingSuccessPayload", + "fields": [ + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OnboardingInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatedRestrictedToInput", + "inputFields": [ + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "name": "phoneNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateIndividualOnboardingInput", + "inputFields": [ + { + "name": "accountName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "accountCountry", + "type": { + "kind": "ENUM", + "name": "AccountCountry", + "ofType": null + } + }, + { + "name": "employmentStatus", + "type": { + "kind": "ENUM", + "name": "EmploymentStatus", + "ofType": null + } + }, + { + "name": "monthlyIncome", + "type": { + "kind": "ENUM", + "name": "MonthlyIncome", + "ofType": null + } + }, + { + "name": "residencyAddress", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResidencyAddressInput", + "ofType": null + } + }, + { + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "onboardingId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "taxIdentificationNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateIndividualOnboardingPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "UpdateIndividualOnboardingSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateIndividualOnboardingSuccessPayload", + "fields": [ + { + "name": "onboarding", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "OnboardingInfo", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectCardSettingsInput", + "inputFields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "backgroundType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ProjectCardSettingsBackgroundType", + "ofType": null + } + } + }, + { + "name": "logo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "zoomRatioProjectLogo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "name": "status", + "type": { + "kind": "ENUM", + "name": "ProjectCardStatus", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateProjectCardSettingsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateProjectCardSettingsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateProjectCardSettingsSuccessPayload", + "fields": [ + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectCardSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "CardSettings", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateReceivedSepaDirectDebitB2bMandateInput", + "inputFields": [ + { + "name": "receivedDirectDebitMandateId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "mandateReference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "creditorIdentifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "creditorName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "iban", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateReceivedSepaDirectDebitB2bMandatePayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateReceivedSepaDirectDebitB2bMandateSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateAlreadyExistRejection" + }, + { + "kind": "OBJECT", + "name": "ReceivedDirectDebitMandateNotB2bRejection" + }, + { + "kind": "OBJECT", + "name": "AccountNotFoundRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateReceivedSepaDirectDebitB2bMandateSuccessPayload", + "fields": [ + { + "name": "receivedDirectDebitMandate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "ReceivedDirectDebitMandate", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateSupportingDocumentInput", + "inputFields": [ + { + "name": "supportingDocumentId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "supportingDocumentType", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentType", + "ofType": null + } + }, + { + "name": "supportingDocumentPurpose", + "type": { + "kind": "ENUM", + "name": "SupportingDocumentPurposeEnum", + "ofType": null + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateSupportingDocumentPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateSupportingDocumentSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "ForbiddenRejection" + }, + { + "kind": "OBJECT", + "name": "InternalErrorRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "SupportingDocumentStatusDoesNotAllowUpdateRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateSupportingDocumentSuccessPayload", + "fields": [ + { + "name": "supportingDocument", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "SupportingDocument", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateUserConsentSettingsInput", + "inputFields": [ + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "preferredNotificationChannel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PreferredNotificationChannel", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "UpdateUserConsentSettingsPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UpdateUserConsentSettingsSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "UpdateUserConsentSettingsTokenRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UpdateUserConsentSettingsSuccessPayload", + "fields": [ + { + "name": "userConsentSettings", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UserConsentSettings", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UpdateUserConsentSettingsTokenRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "SCALAR", + "name": "Upload" + }, + { + "kind": "SCALAR", + "name": "URL" + }, + { + "kind": "OBJECT", + "name": "User", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountMemberships", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "AccountMembershipConnection", + "ofType": null + } + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMembershipsFilterInput", + "ofType": null + } + } + ] + }, + { + "name": "mobilePhoneNumber", + "type": { + "kind": "SCALAR", + "name": "PhoneNumber", + "ofType": null + }, + "args": [] + }, + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "allFirstNames", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "args": [] + }, + { + "name": "nationalityCCA3", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + }, + "args": [] + }, + { + "name": "idVerified", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + }, + { + "name": "authenticators", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Authenticator", + "ofType": null + } + } + }, + "args": [] + }, + { + "name": "identificationStatus", + "type": { + "kind": "ENUM", + "name": "IdentificationStatus", + "ofType": null + }, + "args": [] + }, + { + "name": "identificationLevels", + "type": { + "kind": "OBJECT", + "name": "IdentificationLevels", + "ofType": null + }, + "args": [] + }, + { + "name": "preferredNotificationChannel", + "type": { + "kind": "ENUM", + "name": "PreferredNotificationChannel", + "ofType": null + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "joinedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "identifications", + "type": { + "kind": "OBJECT", + "name": "IdentificationConnection", + "ofType": null + }, + "args": [ + { + "name": "first", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "name": "after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "filters", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentificationFiltersInput", + "ofType": null + } + }, + { + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentificationsOrderByInput", + "ofType": null + } + } + ] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UserConsentSettings", + "fields": [ + { + "name": "preferredNotificationChannel", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "PreferredNotificationChannel", + "ofType": null + } + }, + "args": [] + }, + { + "name": "userId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "projectId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "UserEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UserFilterInput", + "inputFields": [ + { + "name": "birthDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "identificationLevel", + "type": { + "kind": "ENUM", + "name": "IdentificationLevelInput", + "ofType": null + } + }, + { + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "mobilePhoneNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "nationalityCCA3", + "type": { + "kind": "SCALAR", + "name": "CCA3", + "ofType": null + } + }, + { + "name": "preferredNotificationChannel", + "type": { + "kind": "ENUM", + "name": "PreferredNotificationChannel", + "ofType": null + } + }, + { + "name": "search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToDisableItsOwnAccountMembershipRejection", + "fields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToManageAccountMembershipRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UserNotAllowedToSuspendItsOwnAccountMembershipRejection", + "fields": [ + { + "name": "accountMembershipId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "ENUM", + "name": "UserOrderByFieldInput", + "enumValues": [ + { + "name": "createdAt" + }, + { + "name": "updatedAt" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "UserOrderByInput", + "inputFields": [ + { + "name": "field", + "type": { + "kind": "ENUM", + "name": "UserOrderByFieldInput", + "ofType": null + } + }, + { + "name": "direction", + "type": { + "kind": "ENUM", + "name": "OrderByDirection", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "ValidationError", + "fields": [ + { + "name": "field", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "errors", + "type": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "FieldValidationError", + "ofType": null + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ValidationFieldError", + "fields": [ + { + "name": "code", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "ValidationFieldErrorCode", + "ofType": null + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "path", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "ValidationFieldErrorCode", + "enumValues": [ + { + "name": "InvalidString" + }, + { + "name": "InvalidType" + }, + { + "name": "TooLong" + }, + { + "name": "TooShort" + }, + { + "name": "UnrecognizedKeys" + } + ] + }, + { + "kind": "OBJECT", + "name": "ValidationRejection", + "fields": [ + { + "name": "fields", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "ValidationFieldError", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ValidIban", + "fields": [ + { + "name": "iban", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "checksum", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "bank", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Bank", + "ofType": null + } + }, + "args": [] + }, + { + "name": "reachability", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Reachability", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "ValidIdentificationLevelStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "SwanIdentificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "VerificationFlow", + "enumValues": [ + { + "name": "Upfront" + }, + { + "name": "Progressive" + } + ] + }, + { + "kind": "ENUM", + "name": "VerificationStatus", + "enumValues": [ + { + "name": "NotStarted" + }, + { + "name": "WaitingForInformation" + }, + { + "name": "Pending" + }, + { + "name": "Verified" + }, + { + "name": "Refused" + } + ] + }, + { + "kind": "OBJECT", + "name": "VerifiedStatusInfo", + "fields": [ + { + "name": "verifiedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "AccountVerificationStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AccountVerificationStatusInfo" + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "ViewCardNumbersInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ViewCardNumbersPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ViewCardNumbersSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ViewCardNumbersSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ViewPhysicalCardNumbersInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ViewPhysicalCardNumbersPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ViewPhysicalCardNumbersSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ViewPhysicalCardNumbersSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "ViewPhysicalCardPinInput", + "inputFields": [ + { + "name": "cardId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "name": "consentRedirectUrl", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ] + }, + { + "kind": "UNION", + "name": "ViewPhysicalCardPinPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ViewPhysicalCardPinSuccessPayload" + }, + { + "kind": "OBJECT", + "name": "CardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PhysicalCardNotFoundRejection" + }, + { + "kind": "OBJECT", + "name": "PINNotReadyRejection" + }, + { + "kind": "OBJECT", + "name": "UserNotCardHolderRejection" + }, + { + "kind": "OBJECT", + "name": "ValidationRejection" + } + ] + }, + { + "kind": "OBJECT", + "name": "ViewPhysicalCardPinSuccessPayload", + "fields": [ + { + "name": "consent", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "Consent", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "IBAN", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "IBAN", + "ofType": null + } + }, + "args": [] + }, + { + "name": "BIC", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "BIC", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "IBANStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "blockSDD", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "VirtualIBANEntryConnection", + "fields": [ + { + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "edges", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntryEdge", + "ofType": null + } + } + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Connection" + } + ] + }, + { + "kind": "OBJECT", + "name": "VirtualIBANEntryEdge", + "fields": [ + { + "name": "cursor", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "node", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "OBJECT", + "name": "VirtualIBANEntry", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Edge" + } + ] + }, + { + "kind": "OBJECT", + "name": "WalletProvider", + "fields": [ + { + "name": "name", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "WalletProviderType", + "enumValues": [ + { + "name": "ApplePay" + }, + { + "name": "GooglePay" + } + ] + }, + { + "kind": "SCALAR", + "name": "WalletToken" + }, + { + "kind": "OBJECT", + "name": "WebBankingSettings", + "fields": [ + { + "name": "canViewAccountDetails", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canViewAccountStatement", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canManageVirtualIbans", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canInitiatePaymentsToNewBeneficiaries", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canViewPaymentList", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canOrderVirtualCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canOrderPhysicalCards", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canViewMembers", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + }, + { + "name": "canAddNewMembers", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookEventLog", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "eventId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "eventDate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "eventType", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "resourceId", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "duration", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "requestPayload", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "responsePayload", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "statusCode", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "statusText", + "type": { + "kind": "ENUM", + "name": "StatusText", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookSubscription", + "type": { + "kind": "OBJECT", + "name": "WebhookSubscription", + "ofType": null + }, + "args": [] + }, + { + "name": "retryCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookSubscriptionLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "webhookSubscriptionEndpoint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookEventLogFiltersInput", + "inputFields": [ + { + "name": "statusCode", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "name": "statusText", + "type": { + "kind": "ENUM", + "name": "StatusText", + "ofType": null + } + }, + { + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + { + "name": "eventType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "resourceId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "name": "webhookSubscriptionId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + ] + }, + { + "kind": "OBJECT", + "name": "WebhookSubscription", + "fields": [ + { + "name": "id", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "args": [] + }, + { + "name": "label", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "endpoint", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "secret", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "args": [] + }, + { + "name": "eventTypes", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "LIST", + "ofType": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "args": [] + }, + { + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + }, + { + "name": "statusInfo", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "INTERFACE", + "name": "WebhookSubscriptionStatusInfo", + "ofType": null + } + }, + "args": [] + }, + { + "name": "kpi", + "type": { + "kind": "OBJECT", + "name": "WebhookSubscriptionKpi", + "ofType": null + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionBrokenStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "WebhookSubscriptionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "brokenAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "WebhookSubscriptionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionDisabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "WebhookSubscriptionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "disabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "WebhookSubscriptionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionEnabledStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "WebhookSubscriptionStatus", + "ofType": null + } + }, + "args": [] + }, + { + "name": "enabledAt", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "WebhookSubscriptionStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionKpi", + "fields": [ + { + "name": "totalHits", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "args": [] + }, + { + "name": "errorRate", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [] + }, + { + "kind": "ENUM", + "name": "WebhookSubscriptionStatus", + "enumValues": [ + { + "name": "Enabled" + }, + { + "name": "Disabled" + }, + { + "name": "Broken" + } + ] + }, + { + "kind": "INTERFACE", + "name": "WebhookSubscriptionStatusInfo", + "fields": [ + { + "name": "status", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "ENUM", + "name": "WebhookSubscriptionStatus", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [], + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "WebhookSubscriptionBrokenStatusInfo" + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionDisabledStatusInfo" + }, + { + "kind": "OBJECT", + "name": "WebhookSubscriptionEnabledStatusInfo" + } + ] + }, + { + "kind": "OBJECT", + "name": "WrongValueProvidedRejection", + "fields": [ + { + "name": "message", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "valueProvided", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + }, + { + "name": "parameterName", + "type": { + "kind": "NON_NULL", + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "args": [] + } + ], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Rejection" + } + ] + } + ], + "directives": [] + } +}; + +import * as gqlTada from "gql.tada"; + +declare module "gql.tada" { + interface setupSchema { + introspection: introspection; + } +}