box-node-sdk
Version:
Official SDK for Box Platform APIs
16 lines (15 loc) • 658 B
TypeScript
import { SerializedData } from '../serialization/json';
export interface MetadataTaxonomyLevel {
/**
* The display name of the level as it is shown to the user. */
readonly displayName?: string;
/**
* A description of the level. */
readonly description?: string;
/**
* An index of the level within the taxonomy. Levels are indexed starting from 1. */
readonly level?: number;
readonly rawData?: SerializedData;
}
export declare function serializeMetadataTaxonomyLevel(val: MetadataTaxonomyLevel): SerializedData;
export declare function deserializeMetadataTaxonomyLevel(val: SerializedData): MetadataTaxonomyLevel;