/** * 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 AccountQRCode */ export interface AccountQRCode { /** * String representation of the QR Code image * @type {string} * @memberof AccountQRCode */ qrString?: string; } /** * Check if a given object implements the AccountQRCode interface. */ export declare function instanceOfAccountQRCode(value: object): boolean; export declare function AccountQRCodeFromJSON(json: any): AccountQRCode; export declare function AccountQRCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountQRCode; export declare function AccountQRCodeToJSON(value?: AccountQRCode | null): any;