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