UNPKG

wallee

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