Skip to content

creators

Setting model for Unreal Engine Creators.

ProductTypeItemModel

Bases: BaseSettingsModel

Product type item for creator plugins.

Source code in server/creators.py
 8
 9
10
11
12
13
14
15
16
17
18
class ProductTypeItemModel(BaseSettingsModel):
    """Product type item for creator plugins."""
    _layout = "compact"
    product_type: str = SettingsField(
        title="Product Type",
        description="Product type name"
    )
    label: str = SettingsField(
        title="Label",
        description="Label to display in UI for the product type",
    )