/** * 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 UpdateTaxRequest */ export interface UpdateTaxRequest { /** * * @type {Array} * @memberof UpdateTaxRequest */ tax_rates: Array; } /** * Check if a given object implements the UpdateTaxRequest interface. */ export declare function instanceOfUpdateTaxRequest(value: object): value is UpdateTaxRequest; export declare function UpdateTaxRequestFromJSON(json: any): UpdateTaxRequest; export declare function UpdateTaxRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTaxRequest; export declare function UpdateTaxRequestToJSON(value?: UpdateTaxRequest | null): any; //# sourceMappingURL=UpdateTaxRequest.d.ts.map