import type { DunningFlowLevel } from './DunningFlowLevel'; /** * * @export * @interface DunningFlowLevelListResponse */ export interface DunningFlowLevelListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof DunningFlowLevelListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof DunningFlowLevelListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof DunningFlowLevelListResponse */ readonly limit?: number; } /** * Check if a given object implements the DunningFlowLevelListResponse interface. */ export declare function instanceOfDunningFlowLevelListResponse(value: object): value is DunningFlowLevelListResponse; export declare function DunningFlowLevelListResponseFromJSON(json: any): DunningFlowLevelListResponse; export declare function DunningFlowLevelListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DunningFlowLevelListResponse; export declare function DunningFlowLevelListResponseToJSON(json: any): DunningFlowLevelListResponse; export declare function DunningFlowLevelListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;