wallee
Version:
TypeScript/JavaScript client for wallee
38 lines (37 loc) • 1.3 kB
TypeScript
/**
*
* @export
* @interface DunningConditionType
*/
export interface DunningConditionType {
/**
* The localized name of the object.
* @type {{ [key: string]: string; }}
* @memberof DunningConditionType
*/
readonly name?: {
[key: string]: string;
};
/**
* The localized description of the object.
* @type {{ [key: string]: string; }}
* @memberof DunningConditionType
*/
readonly description?: {
[key: string]: string;
};
/**
* A unique identifier for the object.
* @type {number}
* @memberof DunningConditionType
*/
readonly id?: number;
}
/**
* Check if a given object implements the DunningConditionType interface.
*/
export declare function instanceOfDunningConditionType(value: object): value is DunningConditionType;
export declare function DunningConditionTypeFromJSON(json: any): DunningConditionType;
export declare function DunningConditionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DunningConditionType;
export declare function DunningConditionTypeToJSON(json: any): DunningConditionType;
export declare function DunningConditionTypeToJSONTyped(value?: Omit<DunningConditionType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;