wallee
Version:
TypeScript/JavaScript client for wallee
44 lines (43 loc) • 1.35 kB
TypeScript
/**
*
* @export
* @interface DunningFlowType
*/
export interface DunningFlowType {
/**
*
* @type {string}
* @memberof DunningFlowType
*/
readonly specificCountry?: string;
/**
* The localized name of the object.
* @type {{ [key: string]: string; }}
* @memberof DunningFlowType
*/
readonly name?: {
[key: string]: string;
};
/**
* The localized description of the object.
* @type {{ [key: string]: string; }}
* @memberof DunningFlowType
*/
readonly description?: {
[key: string]: string;
};
/**
* A unique identifier for the object.
* @type {number}
* @memberof DunningFlowType
*/
readonly id?: number;
}
/**
* Check if a given object implements the DunningFlowType interface.
*/
export declare function instanceOfDunningFlowType(value: object): value is DunningFlowType;
export declare function DunningFlowTypeFromJSON(json: any): DunningFlowType;
export declare function DunningFlowTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DunningFlowType;
export declare function DunningFlowTypeToJSON(json: any): DunningFlowType;
export declare function DunningFlowTypeToJSONTyped(value?: Omit<DunningFlowType, 'specificCountry' | 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;