/** * 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 */ /** * * @export * @interface PaymentRequestParametersChannelPropertiesAllOf */ export interface PaymentRequestParametersChannelPropertiesAllOf { /** * Three digit code written on the back of the card (usually called CVV/CVN). * @type {string} * @memberof PaymentRequestParametersChannelPropertiesAllOf */ cvv?: string; } /** * Check if a given object implements the PaymentRequestParametersChannelPropertiesAllOf interface. */ export declare function instanceOfPaymentRequestParametersChannelPropertiesAllOf(value: object): boolean; export declare function PaymentRequestParametersChannelPropertiesAllOfFromJSON(json: any): PaymentRequestParametersChannelPropertiesAllOf; export declare function PaymentRequestParametersChannelPropertiesAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentRequestParametersChannelPropertiesAllOf; export declare function PaymentRequestParametersChannelPropertiesAllOfToJSON(value?: PaymentRequestParametersChannelPropertiesAllOf | null): any;