/** * New Payment Gateway APIs * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2022-01-01 * Contact: nextgenapi@cashfree.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export declare class CFCardEMI { /** * The channel for card payments will always be \"link\" */ 'channel': string; /** * Customer card number. */ 'cardNumber': string; /** * Customer name mentioned on the card. */ 'cardHolderName'?: string; /** * Card expiry month. */ 'cardExpiryMm': string; /** * Card expiry year. */ 'cardExpiryYy': string; /** * CVV mentioned on the card. */ 'cardCvv': string; /** * Card alias as returned by Cashfree Vault API */ 'cardAlias'?: string; /** * Card bank name, required for EMI payments. This is the bank user has selected for EMI. One of [\"Kotak\", \"ICICI\", \"RBL\", \"BOB\", \"Standard Chartered\", \"HDFC\"] */ 'cardBankName': CFCardEMI.CardBankNameEnum; /** * EMI tenure selected by the user */ 'emiTenure': number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CFCardEMI { enum ChannelEnum { Link } enum CardBankNameEnum { Kotak, Icici, Rbl, Bob, StandardChartered, Hdfc } }