interface Item {
    assortmentAtts?: {
        [key: string]: any;
    };
    assortmentItems?: any[];
    atts?: {
        [key: string]: any;
    };
    createdById?: string;
    createdOn?: Date;
    federatedId?: string;
    id?: string;
    isPrimary?: boolean;
    itemFamily?: Item;
    itemFamilyId?: string;
    itemOptions?: {
        [key: string]: Item[];
    };
    name: string;
    optionGroup?: string;
    optionName?: string;
    orgId?: string;
    orgSlug?: string;
    primaryViewableId?: string;
    readUpdatedOn?: Date;
    roles?: string[];
    typeId?: string;
    typePath?: string;
    updatedById?: string;
    updatedOn?: Date;
    [key: string]: any;
}

Hierarchy

  • TypeManagedEntity
    • Item

Indexable

[key: string]: any

Properties

assortmentAtts?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
assortmentItems?: any[]
atts?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
createdById?: string
createdOn?: Date
federatedId?: string
id?: string
isPrimary?: boolean
itemFamily?: Item
itemFamilyId?: string
itemOptions?: {
    [key: string]: Item[];
}

Type declaration

  • [key: string]: Item[]
name: string
optionGroup?: string
optionName?: string
orgId?: string
orgSlug?: string
primaryViewableId?: string
readUpdatedOn?: Date
roles?: string[]
typeId?: string
typePath?: string
updatedById?: string
updatedOn?: Date

Generated using TypeDoc