We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 820a337 commit c152b93Copy full SHA for c152b93
deepgram/clients/manage/v1/response.py
@@ -253,7 +253,7 @@ def __getitem__(self, key):
253
if _dict["details"] is not None:
254
_dict["details"] = Details.from_dict(_dict["details"])
255
if _dict["token_details"] is not None:
256
- _dict["details"] = [
+ _dict["token_details"] = [
257
TokenDetail.from_dict(token_details) for _, token_details in _dict["token_details"].items()
258
]
259
return _dict[key]
@@ -262,7 +262,7 @@ def __getitem__(self, key):
262
@dataclass_json
263
@dataclass
264
class UsageRequest:
265
- ProjectUUID: Optional[str] = ""
+ project_uuid: Optional[str] = ""
266
request_id: Optional[str] = ""
267
created: Optional[str] = ""
268
path: Optional[str] = ""
0 commit comments