Skip to content

Commit

Permalink
Merge pull request #397 from dvonthenen/implement-expiration-date
Browse files Browse the repository at this point in the history
Adds Missing `expiration_date`
  • Loading branch information
davidvonthenen authored May 14, 2024
2 parents 91d19df + 8d66242 commit 996a9c1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deepgram/clients/manage/v1/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def __str__(self) -> str:
@dataclass
class KeyOptions:
comment: Optional[str] = ""
expiration_date: Optional[str] = field(
default=None, metadata=config(exclude=lambda f: f is None)
)
time_to_live_in_seconds: Optional[int] = field(
default=None, metadata=config(exclude=lambda f: f is None)
)
Expand Down

0 comments on commit 996a9c1

Please sign in to comment.