/** * * @export * @interface LabelDescriptorType */ export interface LabelDescriptorType { /** * The localized name of the object. * @type {{ [key: string]: string; }} * @memberof LabelDescriptorType */ readonly name?: { [key: string]: string; }; /** * The localized description of the object. * @type {{ [key: string]: string; }} * @memberof LabelDescriptorType */ readonly description?: { [key: string]: string; }; /** * A unique identifier for the object. * @type {number} * @memberof LabelDescriptorType */ readonly id?: number; } /** * Check if a given object implements the LabelDescriptorType interface. */ export declare function instanceOfLabelDescriptorType(value: object): value is LabelDescriptorType; export declare function LabelDescriptorTypeFromJSON(json: any): LabelDescriptorType; export declare function LabelDescriptorTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelDescriptorType; export declare function LabelDescriptorTypeToJSON(json: any): LabelDescriptorType; export declare function LabelDescriptorTypeToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;