/** * * @export * @interface PaymentTerminalReceiptType */ export interface PaymentTerminalReceiptType { /** * The localized name of the object. * @type {{ [key: string]: string; }} * @memberof PaymentTerminalReceiptType */ readonly name?: { [key: string]: string; }; /** * The localized description of the object. * @type {{ [key: string]: string; }} * @memberof PaymentTerminalReceiptType */ readonly description?: { [key: string]: string; }; /** * A unique identifier for the object. * @type {number} * @memberof PaymentTerminalReceiptType */ readonly id?: number; } /** * Check if a given object implements the PaymentTerminalReceiptType interface. */ export declare function instanceOfPaymentTerminalReceiptType(value: object): value is PaymentTerminalReceiptType; export declare function PaymentTerminalReceiptTypeFromJSON(json: any): PaymentTerminalReceiptType; export declare function PaymentTerminalReceiptTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentTerminalReceiptType; export declare function PaymentTerminalReceiptTypeToJSON(json: any): PaymentTerminalReceiptType; export declare function PaymentTerminalReceiptTypeToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;