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