/** * Leka API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DocumentItemTax } from './DocumentItemTax'; /** * * @export * @interface DocumentItem */ export interface DocumentItem { /** * * @type {string} * @memberof DocumentItem */ name: string; /** * * @type {string} * @memberof DocumentItem */ description?: string | null; /** * * @type {number} * @memberof DocumentItem */ price: number; /** * * @type {any} * @memberof DocumentItem */ metadata?: any | null; /** * * @type {number} * @memberof DocumentItem */ quantity: number; /** * * @type {Array} * @memberof DocumentItem */ taxes: Array; /** * * @type {number} * @memberof DocumentItem */ total: number; /** * * @type {number} * @memberof DocumentItem */ total_with_tax: number; } /** * Check if a given object implements the DocumentItem interface. */ export declare function instanceOfDocumentItem(value: object): value is DocumentItem; export declare function DocumentItemFromJSON(json: any): DocumentItem; export declare function DocumentItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentItem; export declare function DocumentItemToJSON(value?: DocumentItem | null): any; //# sourceMappingURL=DocumentItem.d.ts.map