UNPKG

wallee

Version:
77 lines (76 loc) 2.77 kB
import type { Label } from './Label'; /** * * @export * @interface DebtCollectionCaseDocument */ export interface DebtCollectionCaseDocument { /** * The ID of the space this object belongs to. * @type {number} * @memberof DebtCollectionCaseDocument */ readonly linkedSpaceId?: number; /** * The file name of the document. * @type {string} * @memberof DebtCollectionCaseDocument */ readonly fileName?: 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 DebtCollectionCaseDocument */ readonly plannedPurgeDate?: Date; /** * The debt collection case that this document belongs to. * @type {number} * @memberof DebtCollectionCaseDocument */ readonly debtCollectionCase?: number; /** * A unique identifier for the object. * @type {number} * @memberof DebtCollectionCaseDocument */ readonly id?: number; /** * The MIME type of the document's content. * @type {string} * @memberof DebtCollectionCaseDocument */ readonly mimeType?: string; /** * The date and time when the object was created. * @type {Date} * @memberof DebtCollectionCaseDocument */ readonly createdOn?: Date; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof DebtCollectionCaseDocument */ readonly version?: number; /** * A unique identifier of the document. * @type {string} * @memberof DebtCollectionCaseDocument */ readonly uniqueId?: string; /** * The labels providing additional information about the object. * @type {Set<Label>} * @memberof DebtCollectionCaseDocument */ readonly labels?: Set<Label>; } /** * Check if a given object implements the DebtCollectionCaseDocument interface. */ export declare function instanceOfDebtCollectionCaseDocument(value: object): value is DebtCollectionCaseDocument; export declare function DebtCollectionCaseDocumentFromJSON(json: any): DebtCollectionCaseDocument; export declare function DebtCollectionCaseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollectionCaseDocument; export declare function DebtCollectionCaseDocumentToJSON(json: any): DebtCollectionCaseDocument; export declare function DebtCollectionCaseDocumentToJSONTyped(value?: Omit<DebtCollectionCaseDocument, 'linkedSpaceId' | 'fileName' | 'plannedPurgeDate' | 'debtCollectionCase' | 'id' | 'mimeType' | 'createdOn' | 'version' | 'uniqueId' | 'labels'> | null, ignoreDiscriminator?: boolean): any;