UNPKG

@apideck/node

Version:
34 lines (33 loc) 1.09 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Cash details for this payment * @export * @interface CashDetails */ export interface CashDetails { /** * The amount of cash given by the customer. * @type {any} * @memberof CashDetails */ amount?: any | null; /** * The amount of change due back to the buyer. For Square: this read-only field is calculated from the amount_money and buyer_supplied_money fields. * @type {any} * @memberof CashDetails */ charge_back_amount?: any | null; } export declare function CashDetailsFromJSON(json: any): CashDetails; export declare function CashDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CashDetails; export declare function CashDetailsToJSON(value?: CashDetails | null): any;