/** * 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 { ChannelPropertiesCards } from './ChannelPropertiesCards'; /** * An object representing channel-specific properties. * @export * @interface ChannelProperties */ export interface ChannelProperties { /** * * @type {ChannelPropertiesCards} * @memberof ChannelProperties */ cards?: ChannelPropertiesCards; } /** * Check if a given object implements the ChannelProperties interface. */ export declare function instanceOfChannelProperties(value: object): boolean; export declare function ChannelPropertiesFromJSON(json: any): ChannelProperties; export declare function ChannelPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChannelProperties; export declare function ChannelPropertiesToJSON(value?: ChannelProperties | null): any;