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