UNPKG

wallee

Version:
35 lines (34 loc) 1.71 kB
import type { DebtCollectionCaseDocument } from './DebtCollectionCaseDocument'; /** * * @export * @interface DebtCollectionCaseDocumentListResponse */ export interface DebtCollectionCaseDocumentListResponse { /** * An array containing the actual response objects. * @type {Array<DebtCollectionCaseDocument>} * @memberof DebtCollectionCaseDocumentListResponse */ readonly data?: Array<DebtCollectionCaseDocument>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof DebtCollectionCaseDocumentListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof DebtCollectionCaseDocumentListResponse */ readonly limit?: number; } /** * Check if a given object implements the DebtCollectionCaseDocumentListResponse interface. */ export declare function instanceOfDebtCollectionCaseDocumentListResponse(value: object): value is DebtCollectionCaseDocumentListResponse; export declare function DebtCollectionCaseDocumentListResponseFromJSON(json: any): DebtCollectionCaseDocumentListResponse; export declare function DebtCollectionCaseDocumentListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollectionCaseDocumentListResponse; export declare function DebtCollectionCaseDocumentListResponseToJSON(json: any): DebtCollectionCaseDocumentListResponse; export declare function DebtCollectionCaseDocumentListResponseToJSONTyped(value?: Omit<DebtCollectionCaseDocumentListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;