UNPKG

@apideck/node

Version:
41 lines (40 loc) 1.08 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. */ import { Currency } from './Currency'; /** * * @export * @interface OrderPayments */ export interface OrderPayments { /** * A unique identifier for an object. * @type {string} * @memberof OrderPayments */ readonly id?: string; /** * * @type {number} * @memberof OrderPayments */ amount?: number; /** * * @type {Currency} * @memberof OrderPayments */ currency?: Currency | null; } export declare function OrderPaymentsFromJSON(json: any): OrderPayments; export declare function OrderPaymentsFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderPayments; export declare function OrderPaymentsToJSON(value?: OrderPayments | null): any;