/** * 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'; /** * * @export * @interface DocumentItemTax */ export interface DocumentItemTax { /** * * @type {number} * @memberof DocumentItemTax */ rate: 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 DocumentItemTax */ metadata?: { [key: string]: CreateEntityRequestMetadataValue; } | null; } /** * Check if a given object implements the DocumentItemTax interface. */ export declare function instanceOfDocumentItemTax(value: object): value is DocumentItemTax; export declare function DocumentItemTaxFromJSON(json: any): DocumentItemTax; export declare function DocumentItemTaxFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentItemTax; export declare function DocumentItemTaxToJSON(value?: DocumentItemTax | null): any; //# sourceMappingURL=DocumentItemTax.d.ts.map