wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.54 kB
TypeScript
import type { Customer } from './Customer';
/**
*
* @export
* @interface CustomerSearchResponse
*/
export interface CustomerSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<Customer>}
* @memberof CustomerSearchResponse
*/
readonly data?: Array<Customer>;
/**
* 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<CustomerSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;