wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.51 kB
TypeScript
import type { DunningFlowLevel } from './DunningFlowLevel';
/**
*
* @export
* @interface DunningFlowLevelListResponse
*/
export interface DunningFlowLevelListResponse {
/**
* An array containing the actual response objects.
* @type {Array<DunningFlowLevel>}
* @memberof DunningFlowLevelListResponse
*/
readonly data?: Array<DunningFlowLevel>;
/**
* 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<DunningFlowLevelListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;