/** * 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 */ import type { CardChannelProperties } from './CardChannelProperties'; import type { CardParametersCardInformation } from './CardParametersCardInformation'; /** * * @export * @interface CardParameters */ export interface CardParameters { /** * * @type {string} * @memberof CardParameters */ currency: string; /** * * @type {CardChannelProperties} * @memberof CardParameters */ channelProperties?: CardChannelProperties | null; /** * * @type {CardParametersCardInformation} * @memberof CardParameters */ cardInformation?: CardParametersCardInformation; } /** * Check if a given object implements the CardParameters interface. */ export declare function instanceOfCardParameters(value: object): boolean; export declare function CardParametersFromJSON(json: any): CardParameters; export declare function CardParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardParameters; export declare function CardParametersToJSON(value?: CardParameters | null): any;