Skip to content

Commit fc9fb2f

Browse files
committed
feat(stream): update generated types and methods
fix: remove duplicate notification_url field in webhook response types
1 parent 9f00441 commit fc9fb2f

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

src/cloudflare/types/stream/webhook_get_response.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ class WebhookGetResponse(BaseModel):
1414
modified: Optional[datetime] = None
1515
"""The date and time the webhook was last modified."""
1616

17-
notification_url: Optional[str] = None
18-
"""The URL where webhooks will be sent."""
19-
2017
notification_url: Optional[str] = FieldInfo(alias="notificationUrl", default=None)
2118
"""The URL where webhooks will be sent."""
2219

src/cloudflare/types/stream/webhook_update_response.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ class WebhookUpdateResponse(BaseModel):
1414
modified: Optional[datetime] = None
1515
"""The date and time the webhook was last modified."""
1616

17-
notification_url: Optional[str] = None
18-
"""The URL where webhooks will be sent."""
19-
2017
notification_url: Optional[str] = FieldInfo(alias="notificationUrl", default=None)
2118
"""The URL where webhooks will be sent."""
2219

0 commit comments

Comments
 (0)