Interface PrefabWrapperLinkedOption

interface PrefabWrapperLinkedOption {
    configuration?: PrefabWrapperLinkedOptionConfiguration;
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    showInAddChild?: boolean;
    showInReconfigure?: boolean;
    type: "LINKED_OPTION";
    value?: {
        ref: {
            componentId: string;
            optionId: string;
        };
    };
}

Hierarchy (view full)

Properties

key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
showInAddChild?: boolean
showInReconfigure?: boolean
type: "LINKED_OPTION"
value?: {
    ref: {
        componentId: string;
        optionId: string;
    };
}