Skip to content

structures

ListConfig dataclass

Define a list.

Source code in client/ayon_core/pipeline/structures.py
18
19
20
21
22
23
@dataclass
class ListConfig:
    """Define a list."""
    label: str
    list_type: ListType = "generic"
    list_folders: list[ListConfigFolder] = field(default_factory=list)