UNPKG

wallee

Version:
35 lines (34 loc) 829 B
declare class DebtCollectionCaseSource { /** * The localized description of the object. */ 'description'?: { [key: string]: string; }; /** * Whether debt collection cases created from this source will skip review and directly enter preparing state. */ 'forcedPreparingState'?: boolean; /** * A unique identifier for the object. */ 'id'?: number; /** * The localized name of the object. */ 'name'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { DebtCollectionCaseSource };