/** * 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. */ /** * Standard error response format used across all API endpoints. Includes a machine-readable error code and human-readable message. * @export * @interface ModelError */ export interface ModelError { /** * Machine-readable error code (e.g., validation_error, unauthorized, not_found) * @type {string} * @memberof ModelError */ code: string; /** * Human-readable error message describing what went wrong * @type {string} * @memberof ModelError */ message: string; } /** * Check if a given object implements the ModelError interface. */ export declare function instanceOfModelError(value: object): value is ModelError; export declare function ModelErrorFromJSON(json: any): ModelError; export declare function ModelErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelError; export declare function ModelErrorToJSON(value?: ModelError | null): any; //# sourceMappingURL=ModelError.d.ts.map