@makehq/sdk
    Preparing search index...

    Type Alias CreateCustomPropertyStructureItemBody

    CreateCustomPropertyStructureItemBody:
        | BaseCreateCustomPropertyStructureItemBody & {
            options: CustomPropertyStructureItemOption[];
            type: "dropdown"
            | "multiselect";
        }
        | BaseCreateCustomPropertyStructureItemBody & {
            options?: never;
            type: Exclude<CustomPropertyStructureItemType, "dropdown" | "multiselect">;
        }

    Body for creating a custom property structure item. options is required for 'dropdown'/'multiselect' items and not allowed for any other type.

    Type declaration