wallee
Version:
TypeScript/JavaScript client for wallee
36 lines (35 loc) • 797 B
TypeScript
import { FailureCategory } from "./FailureCategory";
declare class FailureReason {
/**
* The category that the failure reason belongs to.
*/
'category'?: FailureCategory;
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { FailureReason };