Skip to content

prefect_hightouch.api_client.models.list_source_order_by

ListSourceOrderBy

Bases: str, Enum

Source code in prefect_hightouch/api_client/models/list_source_order_by.py
 4
 5
 6
 7
 8
 9
10
11
12
class ListSourceOrderBy(str, Enum):
    ID = "id"
    NAME = "name"
    SLUG = "slug"
    CREATEDAT = "createdAt"
    UPDATEDAT = "updatedAt"

    def __str__(self) -> str:
        return str(self.value)

ID = 'id' class-attribute instance-attribute

NAME = 'name' class-attribute instance-attribute

SLUG = 'slug' class-attribute instance-attribute