/** * 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 */ /** * An object representing alternative display of a VA. * @export * @interface AlternativeDisplayItem */ export interface AlternativeDisplayItem { /** * Represent type of alternative display. * @type {string} * @memberof AlternativeDisplayItem */ type?: string; /** * Represent value of alternative display value. * @type {string} * @memberof AlternativeDisplayItem */ value?: string; } /** * Check if a given object implements the AlternativeDisplayItem interface. */ export declare function instanceOfAlternativeDisplayItem(value: object): boolean; export declare function AlternativeDisplayItemFromJSON(json: any): AlternativeDisplayItem; export declare function AlternativeDisplayItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlternativeDisplayItem; export declare function AlternativeDisplayItemToJSON(value?: AlternativeDisplayItem | null): any;