-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_types.py
More file actions
78 lines (50 loc) · 1.66 KB
/
Copy path_types.py
File metadata and controls
78 lines (50 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
Shared types used across multiple SDK modules
"""
from __future__ import annotations
from typing import Literal
from pydantic import BaseModel
Environment = Literal["sandbox", "production"]
BatchJobStatus = Literal["pending", "processing", "completed", "failed", "cancelled"]
ScheduleFrequency = Literal["hourly", "daily", "weekly", "monthly"]
class PaginatedRequest(BaseModel):
"""Base class for paginated requests"""
limit: int | None = None
offset: int | None = None
class PaginatedResponse(BaseModel):
"""Base class for paginated responses"""
total: int
limit: int
offset: int
class GetBatchJobRequest(BaseModel):
"""Request to get a batch job"""
id: str
environment: Environment | None = None
project_id: str | None = None
class ListBatchJobsRequest(BaseModel):
"""Request to list batch jobs"""
environment: Environment | None = None
project_id: str | None = None
status: BatchJobStatus | None = None
limit: int | None = None
cursor: str | None = None
class CreateBatchResponse(BaseModel):
"""Response from creating a batch job"""
id: str
status: BatchJobStatus
total_urls: int
class GetScheduleRequest(BaseModel):
"""Request to get a schedule"""
id: str
environment: Environment | None = None
project_id: str | None = None
class ListSchedulesRequest(BaseModel):
"""Request to list schedules"""
environment: Environment | None = None
project_id: str | None = None
is_active: bool | None = None
limit: int | None = None
cursor: str | None = None
class CreateScheduleResponse(BaseModel):
"""Response from creating a schedule"""
id: str