wallee
Version:
TypeScript/JavaScript client for wallee
52 lines (51 loc) • 1.15 kB
TypeScript
import { LabelDescriptorCategory } from "./LabelDescriptorCategory";
declare class LabelDescriptor {
/**
* The label's category.
*/
'category'?: LabelDescriptorCategory;
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* The features that this label belongs to.
*/
'features'?: Array<number>;
/**
* The group that this label belongs to.
*/
'group'?: number;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
/**
* The type of the label's value.
*/
'type'?: number;
/**
* When listing labels, they can be sorted by this number.
*/
'weight'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { LabelDescriptor };