wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 760 B
TypeScript
declare class LabelDescriptorGroup {
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
/**
* When listing label groups, 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 { LabelDescriptorGroup };