@3dsource/metabox-front-api
    Preparing search index...

    Interface MetaProperty

    Represents a metaProperty within a product that may allow business logic customization.

    Represents metadata properties. May contain custom key-value data set in MetaBox admin.

    Represents metadata with properties and hierarchy info. May contain custom key-value data (pricing hints, availability flags, descriptions) set in MetaBox admin.

    Check for MetaProperty data in product definitions from the configurator data. Custom metadata can be used for display purposes — tooltips, pricing, lead times, availability badges. These are set by content teams in MetaBox admin.

    interface MetaProperty {
        __typename: "MetaProperty";
        id: string;
        name: string;
        type: string;
        value: string;
    }
    Index

    Properties

    __typename: "MetaProperty"

    Represents object typename for the metaProperty.

    id: string

    Unique identifier for the metaProperty.

    name: string

    Display the name for the metaProperty.

    type: string

    Type for the metaProperty.

    value: string

    Value for the metaProperty.