/** * PAY.JP Token API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const CardBrand: { readonly Visa: "Visa"; readonly MasterCard: "MasterCard"; readonly Jcb: "JCB"; readonly AmericanExpress: "American Express"; readonly DinersClub: "Diners Club"; readonly Discover: "Discover"; }; export type CardBrand = (typeof CardBrand)[keyof typeof CardBrand]; export declare function instanceOfCardBrand(value: any): boolean; export declare function CardBrandFromJSON(json: any): CardBrand; export declare function CardBrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardBrand; export declare function CardBrandToJSON(value?: CardBrand | null): any;