Skip to content

prefect_hightouch.api_client.models.list_sync_runs_order_by

ListSyncRunsOrderBy

Bases: str, Enum

Source code in prefect_hightouch/api_client/models/list_sync_runs_order_by.py
 4
 5
 6
 7
 8
 9
10
11
class ListSyncRunsOrderBy(str, Enum):
    ID = "id"
    CREATEDAT = "createdAt"
    STARTEDAT = "startedAt"
    FINISHEDAT = "finishedAt"

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

ID = 'id' class-attribute instance-attribute