/** * 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 { EntitySettingsNumberFormats } from './EntitySettingsNumberFormats'; /** * * @export * @interface EntitySettings */ export interface EntitySettings { /** * * @type {EntitySettingsNumberFormats} * @memberof EntitySettings */ number_formats?: EntitySettingsNumberFormats; } /** * Check if a given object implements the EntitySettings interface. */ export declare function instanceOfEntitySettings(value: object): value is EntitySettings; export declare function EntitySettingsFromJSON(json: any): EntitySettings; export declare function EntitySettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntitySettings; export declare function EntitySettingsToJSON(value?: EntitySettings | null): any; //# sourceMappingURL=EntitySettings.d.ts.map