import type { Customer } from './Customer'; /** * * @export * @interface CustomerListResponse */ export interface CustomerListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof CustomerListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CustomerListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CustomerListResponse */ readonly limit?: number; } /** * Check if a given object implements the CustomerListResponse interface. */ export declare function instanceOfCustomerListResponse(value: object): value is CustomerListResponse; export declare function CustomerListResponseFromJSON(json: any): CustomerListResponse; export declare function CustomerListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerListResponse; export declare function CustomerListResponseToJSON(json: any): CustomerListResponse; export declare function CustomerListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;