/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * Card Installment Configuration * @export * @interface CardInstallmentConfiguration */ export interface CardInstallmentConfiguration { /** * * @type {number} * @memberof CardInstallmentConfiguration */ terms?: number; /** * * @type {string} * @memberof CardInstallmentConfiguration */ interval?: string; /** * * @type {string} * @memberof CardInstallmentConfiguration */ code?: string | null; } /** * Check if a given object implements the CardInstallmentConfiguration interface. */ export declare function instanceOfCardInstallmentConfiguration(value: object): boolean; export declare function CardInstallmentConfigurationFromJSON(json: any): CardInstallmentConfiguration; export declare function CardInstallmentConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardInstallmentConfiguration; export declare function CardInstallmentConfigurationToJSON(value?: CardInstallmentConfiguration | null): any;