/** * 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 { CreateEntityRequestMetadataValue } from './CreateEntityRequestMetadataValue'; import type { DocumentItemTax } from './DocumentItemTax'; /** * * @export * @interface CreateDocumentItem */ export interface CreateDocumentItem { /** * * @type {string} * @memberof CreateDocumentItem */ name: string; /** * * @type {string} * @memberof CreateDocumentItem */ description?: string | null; /** * * @type {number} * @memberof CreateDocumentItem */ price: number; /** * Free input JSON object property. Can contain maximum 50 properties with string content that is not longer than 250 characters or numbers that are not longer than 15 digits. * @type {{ [key: string]: CreateEntityRequestMetadataValue; }} * @memberof CreateDocumentItem */ metadata?: { [key: string]: CreateEntityRequestMetadataValue; } | null; /** * * @type {number} * @memberof CreateDocumentItem */ quantity: number; /** * * @type {Array} * @memberof CreateDocumentItem */ taxes?: Array | null; } /** * Check if a given object implements the CreateDocumentItem interface. */ export declare function instanceOfCreateDocumentItem(value: object): value is CreateDocumentItem; export declare function CreateDocumentItemFromJSON(json: any): CreateDocumentItem; export declare function CreateDocumentItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDocumentItem; export declare function CreateDocumentItemToJSON(value?: CreateDocumentItem | null): any; //# sourceMappingURL=CreateDocumentItem.d.ts.map