Interface TariffNumberTreeNode

interface TariffNumberTreeNode {
    altDescription?: string;
    altDescriptionShort?: string;
    breadcrumbs: string[];
    chapter?: string;
    childCodes?: string[];
    children?: TariffNumberTreeNode[];
    code: string;
    codeNormalized: string;
    countryCode?: string;
    description: string;
    id?: string;
    isChapter?: boolean;
    isLeaf?: boolean;
    isSubChapter?: boolean;
    layer: number;
    list?: string;
    parent?: TariffNumberTreeNode;
    parentCode?: string;
    searchValue?: string;
    subChapterCode?: string;
}

Hierarchy (view full)

Properties

altDescription?: string
altDescriptionShort?: string
breadcrumbs: string[]
chapter?: string
childCodes?: string[]
code: string
codeNormalized: string
countryCode?: string
description: string
id?: string
isChapter?: boolean
isLeaf?: boolean
isSubChapter?: boolean
layer: number
list?: string

Partition ID

parentCode?: string
searchValue?: string
subChapterCode?: string