Skip to content

prefect_hightouch.api_client.models.list_sync_order_by

ListSyncOrderBy

Bases: str, Enum

Source code in prefect_hightouch/api_client/models/list_sync_order_by.py
 4
 5
 6
 7
 8
 9
10
11
12
class ListSyncOrderBy(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