UNPKG

wallee

Version:
60 lines (59 loc) 2.26 kB
import type { CreationEntityState } from './CreationEntityState'; import type { DebtCollectorConditionType } from './DebtCollectorConditionType'; /** * A condition controls under which circumstances a collector configuration is applied to a debt collection case. * @export * @interface DebtCollectorCondition */ export interface DebtCollectorCondition { /** * The ID of the space this object belongs to. * @type {number} * @memberof DebtCollectorCondition */ readonly linkedSpaceId?: number; /** * The name used to identify the condition. * @type {string} * @memberof DebtCollectorCondition */ readonly name?: string; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. * @type {Date} * @memberof DebtCollectorCondition */ readonly plannedPurgeDate?: Date; /** * A unique identifier for the object. * @type {number} * @memberof DebtCollectorCondition */ readonly id?: number; /** * * @type {CreationEntityState} * @memberof DebtCollectorCondition */ state?: CreationEntityState; /** * * @type {DebtCollectorConditionType} * @memberof DebtCollectorCondition */ type?: DebtCollectorConditionType; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof DebtCollectorCondition */ readonly version?: number; } /** * Check if a given object implements the DebtCollectorCondition interface. */ export declare function instanceOfDebtCollectorCondition(value: object): value is DebtCollectorCondition; export declare function DebtCollectorConditionFromJSON(json: any): DebtCollectorCondition; export declare function DebtCollectorConditionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollectorCondition; export declare function DebtCollectorConditionToJSON(json: any): DebtCollectorCondition; export declare function DebtCollectorConditionToJSONTyped(value?: Omit<DebtCollectorCondition, 'linkedSpaceId' | 'name' | 'plannedPurgeDate' | 'id' | 'version'> | null, ignoreDiscriminator?: boolean): any;