/** * 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 { Entity } from './Entity'; import type { PaginationMetadata } from './PaginationMetadata'; /** * * @export * @interface GetEntities200Response */ export interface GetEntities200Response { /** * * @type {Array} * @memberof GetEntities200Response */ data: Array; /** * * @type {PaginationMetadata} * @memberof GetEntities200Response */ pagination: PaginationMetadata; } /** * Check if a given object implements the GetEntities200Response interface. */ export declare function instanceOfGetEntities200Response(value: object): value is GetEntities200Response; export declare function GetEntities200ResponseFromJSON(json: any): GetEntities200Response; export declare function GetEntities200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetEntities200Response; export declare function GetEntities200ResponseToJSON(value?: GetEntities200Response | null): any; //# sourceMappingURL=GetEntities200Response.d.ts.map