UNPKG

@apideck/node

Version:
41 lines (40 loc) 999 B
/** * 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'; /** * Price of the message. * @export * @interface Price */ export interface Price { /** * * @type {string} * @memberof Price */ readonly per_unit?: string; /** * * @type {string} * @memberof Price */ readonly total_amount?: string; /** * * @type {Currency} * @memberof Price */ currency?: Currency | null; } export declare function PriceFromJSON(json: any): Price; export declare function PriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Price; export declare function PriceToJSON(value?: Price | null): any;