Skip to content

Commit 1f04a46

Browse files
committed
Remove 'mode=json' from model_dump in CreateEndpointResponseObject, CreateWebRtcConnectionRequest, and Endpoint classes
1 parent 5302c6a commit 1f04a46

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

bandwidth/models/create_endpoint_response_object.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def to_dict(self) -> Dict[str, Any]:
8080
])
8181

8282
_dict = self.model_dump(
83-
mode='json',
8483
by_alias=True,
8584
exclude=excluded_fields,
8685
exclude_none=True,

bandwidth/models/create_web_rtc_connection_request.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def to_dict(self) -> Dict[str, Any]:
7676
])
7777

7878
_dict = self.model_dump(
79-
mode='json',
8079
by_alias=True,
8180
exclude=excluded_fields,
8281
exclude_none=True,

bandwidth/models/endpoint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def to_dict(self) -> Dict[str, Any]:
7979
])
8080

8181
_dict = self.model_dump(
82-
mode='json',
8382
by_alias=True,
8483
exclude=excluded_fields,
8584
exclude_none=True,

0 commit comments

Comments
 (0)