UNPKG

wallee

Version:
41 lines (40 loc) 1.92 kB
import type { DebtCollectorConfiguration } from './DebtCollectorConfiguration'; /** * * @export * @interface DebtCollectorConfigurationSearchResponse */ export interface DebtCollectorConfigurationSearchResponse { /** * An array containing the actual response objects. * @type {Array<DebtCollectorConfiguration>} * @memberof DebtCollectorConfigurationSearchResponse */ readonly data?: Array<DebtCollectorConfiguration>; /** * The number of skipped objects. * @type {number} * @memberof DebtCollectorConfigurationSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof DebtCollectorConfigurationSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof DebtCollectorConfigurationSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the DebtCollectorConfigurationSearchResponse interface. */ export declare function instanceOfDebtCollectorConfigurationSearchResponse(value: object): value is DebtCollectorConfigurationSearchResponse; export declare function DebtCollectorConfigurationSearchResponseFromJSON(json: any): DebtCollectorConfigurationSearchResponse; export declare function DebtCollectorConfigurationSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollectorConfigurationSearchResponse; export declare function DebtCollectorConfigurationSearchResponseToJSON(json: any): DebtCollectorConfigurationSearchResponse; export declare function DebtCollectorConfigurationSearchResponseToJSONTyped(value?: Omit<DebtCollectorConfigurationSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;