UNPKG

@circle-fin/circle-sdk

Version:
69 lines (68 loc) 2.05 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TokenizedCardDetails */ export interface TokenizedCardDetails { /** * The card\'s expiration month. * @type {number} * @memberof TokenizedCardDetails */ expMonth: number; /** * Four digit number representing the card\'s expiration year. * @type {number} * @memberof TokenizedCardDetails */ expYear: number; /** * The network of the card. * @type {string} * @memberof TokenizedCardDetails */ network?: TokenizedCardDetailsNetworkEnum; /** * The last 4 digits of the card. * @type {string} * @memberof TokenizedCardDetails */ last4: string; /** * The bank identification number (BIN), the first 6 digits of the card. * @type {string} * @memberof TokenizedCardDetails */ bin: string; /** * The funding type of the card. * @type {string} * @memberof TokenizedCardDetails */ fundingType?: TokenizedCardDetailsFundingTypeEnum; /** * The country code of the issuer bank. Follows the ISO 3166-1 alpha-2 standard. * @type {string} * @memberof TokenizedCardDetails */ issuerCountry?: string; } export declare const TokenizedCardDetailsNetworkEnum: { readonly Visa: "VISA"; readonly Mastercard: "MASTERCARD"; readonly Amex: "AMEX"; readonly Unknown: "UNKNOWN"; }; export declare type TokenizedCardDetailsNetworkEnum = typeof TokenizedCardDetailsNetworkEnum[keyof typeof TokenizedCardDetailsNetworkEnum]; export declare const TokenizedCardDetailsFundingTypeEnum: { readonly Credit: "credit"; readonly Debit: "debit"; readonly Prepaid: "prepaid"; readonly Unknown: "unknown"; }; export declare type TokenizedCardDetailsFundingTypeEnum = typeof TokenizedCardDetailsFundingTypeEnum[keyof typeof TokenizedCardDetailsFundingTypeEnum];