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