/** * 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 { CreateTaxRequestTaxRatesInner } from './CreateTaxRequestTaxRatesInner'; /** * * @export * @interface CreateTaxRequest */ export interface CreateTaxRequest { /** * * @type {string} * @memberof CreateTaxRequest */ name?: string | null; /** * * @type {Array} * @memberof CreateTaxRequest */ tax_rates: Array; /** * Free input JSON object property. Can contain maximum 50 properties with string content that is not longer than 250 characters. * @type {{ [key: string]: string; }} * @memberof CreateTaxRequest */ metadata?: { [key: string]: string; } | null; } /** * Check if a given object implements the CreateTaxRequest interface. */ export declare function instanceOfCreateTaxRequest(value: object): value is CreateTaxRequest; export declare function CreateTaxRequestFromJSON(json: any): CreateTaxRequest; export declare function CreateTaxRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTaxRequest; export declare function CreateTaxRequestToJSON(value?: CreateTaxRequest | null): any; //# sourceMappingURL=CreateTaxRequest.d.ts.map