wallee
Version:
TypeScript/JavaScript client for wallee
38 lines (37 loc) • 1.39 kB
TypeScript
/**
*
* @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<PaymentTerminalReceiptType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;