/** * Billingual API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * * The version of the OpenAPI document: 1.0.0 * Contact: api@billingual.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Item or Service provided to customers by the Entity * @export * @interface Item */ export interface Item { /** * * @type {string} * @memberof Item */ id: string; /** * * @type {string} * @memberof Item */ name: string; /** * * @type {string} * @memberof Item */ description: string | null; /** * * @type {number} * @memberof Item */ price: number; /** * * @type {Array} * @memberof Item */ tax_ids: Array; /** * * @type {number} * @memberof Item */ total_tax: number; /** * * @type {string} * @memberof Item */ entity_id: string; /** * * @type {{ [key: string]: string; }} * @memberof Item */ metadata: { [key: string]: string; }; /** * * @type {Date} * @memberof Item */ created_at: Date; /** * * @type {Date} * @memberof Item */ updated_at: Date; } /** * Check if a given object implements the Item interface. */ export declare function instanceOfItem(value: object): value is Item; export declare function ItemFromJSON(json: any): Item; export declare function ItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): Item; export declare function ItemToJSON(value?: Item | null): any; //# sourceMappingURL=Item.d.ts.map