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