box-node-sdk
Version:
Official SDK for Box Platform APIs
16 lines (15 loc) • 647 B
TypeScript
import { SerializedData } from '../serialization/json';
export interface MetadataTaxonomyAncestor {
/**
* A unique identifier of the metadata taxonomy node. */
readonly id?: string;
/**
* The display name of the metadata taxonomy node. */
readonly displayName?: string;
/**
* An index of the level to which the node belongs. */
readonly level?: number;
readonly rawData?: SerializedData;
}
export declare function serializeMetadataTaxonomyAncestor(val: MetadataTaxonomyAncestor): SerializedData;
export declare function deserializeMetadataTaxonomyAncestor(val: SerializedData): MetadataTaxonomyAncestor;