wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.6 kB
TypeScript
import type { DunningCase } from './DunningCase';
/**
*
* @export
* @interface DunningCaseSearchResponse
*/
export interface DunningCaseSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<DunningCase>}
* @memberof DunningCaseSearchResponse
*/
readonly data?: Array<DunningCase>;
/**
* The number of skipped objects.
* @type {number}
* @memberof DunningCaseSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof DunningCaseSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof DunningCaseSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the DunningCaseSearchResponse interface.
*/
export declare function instanceOfDunningCaseSearchResponse(value: object): value is DunningCaseSearchResponse;
export declare function DunningCaseSearchResponseFromJSON(json: any): DunningCaseSearchResponse;
export declare function DunningCaseSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DunningCaseSearchResponse;
export declare function DunningCaseSearchResponseToJSON(json: any): DunningCaseSearchResponse;
export declare function DunningCaseSearchResponseToJSONTyped(value?: Omit<DunningCaseSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;