Skip to content

Commit 425fbba

Browse files
authoredJan 30, 2025··
python: Refactor models to use alias_generator (#1678)
```json { "file-generated-at": "2025-01-30T21:03:44.929377827+00:00", "git-rev": "f56cc1dced773360bae301cac14d84029ac0f2e7", "openapi-codegen-version": "0.1.0", "openapi.json-sha256": "27c305c4c890291e9dd2506cebe18422317faea9963f3d9abf89a405731e3206" } ``` Note, the field `to_modify` on [this](https://github.com/svix/svix-webhooks-private/blob/dec537950635d73531734c2980811163191c4d32/rust/src/models/event_type_import_open_api_out_data.rs#L7) model does not follow camelCasing
1 parent 2bf683a commit 425fbba

File tree

68 files changed

+240
-331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+240
-331
lines changed
 

‎python/mypy.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[mypy]
22
strict = True
3-
plugins = pydantic.mypy

‎python/svix/models/aggregate_event_types_out.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
from .background_task_status import BackgroundTaskStatus
44
from .background_task_type import BackgroundTaskType
5-
from .common import SvixBaseModel
5+
from .common import BaseModel
66

77

8-
class AggregateEventTypesOut(SvixBaseModel):
8+
class AggregateEventTypesOut(BaseModel):
99
id: str
1010

1111
status: BackgroundTaskStatus

0 commit comments

Comments
 (0)
Please sign in to comment.