UNPKG

card-management-sdk

Version:

The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S

22 lines 1.1 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { nullable, object, optional, string } from '../schema'; export const bankAccountSchema = object({ accountNumber: ['AccountNumber', optional(nullable(string()))], bankName: ['BankName', optional(nullable(string()))], accountName: ['AccountName', optional(nullable(string()))], dateEffective: ['DateEffective', optional(nullable(string()))], dateTerminated: ['DateTerminated', optional(nullable(string()))], iBAN: ['IBAN', optional(nullable(string()))], currencyCode: ['CurrencyCode', optional(nullable(string()))], currencySymbol: ['CurrencySymbol', optional(nullable(string()))], countryISOCode: ['CountryISOCode', optional(nullable(string()))], country: ['Country', optional(nullable(string()))], sortCode: ['SortCode', optional(nullable(string()))], swiftCode: ['SwiftCode', optional(nullable(string()))], bankType: ['BankType', optional(nullable(string()))], }); //# sourceMappingURL=bankAccount.js.map