We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfabdbb + 92d67ea commit c23f619Copy full SHA for c23f619
1 file changed
onelens_backend_client_v2/models.py
@@ -6390,6 +6390,11 @@ class SyncTicketDataRequest(BaseModel):
6390
policy_ids: List[UUID] = Field(
6391
..., description="The unique identifiers of the policies", title="Policy Ids"
6392
)
6393
+ monitor_ids: Optional[List[UUID]] = Field(
6394
+ None,
6395
+ description="The unique identifiers of the monitors to filter tickets by",
6396
+ title="Monitor Ids",
6397
+ )
6398
batch_size: Optional[int] = Field(
6399
500, description="The batch size for syncing ticket data", title="Batch Size"
6400
0 commit comments