UNPKG

wallee

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