UNPKG

wallee

Version:
38 lines (37 loc) 1.63 kB
/** * The debt collection receipt source represents the origin of a particular part of the collected amount. It allows to understand from where the amount is coming from, e.g. if it was added manually or in some other way. * @export * @interface DebtCollectionReceiptSource */ export interface DebtCollectionReceiptSource { /** * The localized name of the object. * @type {{ [key: string]: string; }} * @memberof DebtCollectionReceiptSource */ readonly name?: { [key: string]: string; }; /** * The localized description of the object. * @type {{ [key: string]: string; }} * @memberof DebtCollectionReceiptSource */ readonly description?: { [key: string]: string; }; /** * A unique identifier for the object. * @type {number} * @memberof DebtCollectionReceiptSource */ readonly id?: number; } /** * Check if a given object implements the DebtCollectionReceiptSource interface. */ export declare function instanceOfDebtCollectionReceiptSource(value: object): value is DebtCollectionReceiptSource; export declare function DebtCollectionReceiptSourceFromJSON(json: any): DebtCollectionReceiptSource; export declare function DebtCollectionReceiptSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DebtCollectionReceiptSource; export declare function DebtCollectionReceiptSourceToJSON(json: any): DebtCollectionReceiptSource; export declare function DebtCollectionReceiptSourceToJSONTyped(value?: Omit<DebtCollectionReceiptSource, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;