Skip to content

creatortype

Contains client enums. fixme: this should be deprecated!

CreatorType

Bases: Enum

Represents the type of creator for objects that can be owned by either a group or a user, like Assets.

Source code in roblox/creatortype.py
11
12
13
14
15
16
17
18
19
class CreatorType(Enum):
    """
    Represents the type of creator for objects that can be owned by either a group or a user, like Assets.
    """

    group = "Group"
    """The creator is a group."""
    user = "User"
    """The creator is a user."""

group = 'Group' class-attribute instance-attribute

The creator is a group.

user = 'User' class-attribute instance-attribute

The creator is a user.