/** * 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. */ import type { TaxTaxRatesInner } from './TaxTaxRatesInner'; /** * Tax with one or more rates, each with a valid_from date for historical rate tracking * @export * @interface Tax */ export interface Tax { /** * * @type {string} * @memberof Tax */ id: string; /** * * @type {string} * @memberof Tax */ name: string; /** * * @type {Array} * @memberof Tax */ tax_rates: Array; /** * * @type {string} * @memberof Tax */ entity_id: string; /** * * @type {{ [key: string]: string; }} * @memberof Tax */ metadata: { [key: string]: string; }; /** * * @type {Date} * @memberof Tax */ created_at: Date; /** * * @type {Date} * @memberof Tax */ updated_at: Date; } /** * Check if a given object implements the Tax interface. */ export declare function instanceOfTax(value: object): value is Tax; export declare function TaxFromJSON(json: any): Tax; export declare function TaxFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tax; export declare function TaxToJSON(value?: Tax | null): any; //# sourceMappingURL=Tax.d.ts.map