From 78cd708de310df7538c575286fb0ea4bad9dd54b Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 21 Mar 2024 20:15:01 +0000 Subject: [PATCH] feat(api): adds closed state --- src/lithic/types/account.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lithic/types/account.py b/src/lithic/types/account.py index fdab1999..763934ff 100644 --- a/src/lithic/types/account.py +++ b/src/lithic/types/account.py @@ -82,12 +82,14 @@ class Account(BaseModel): feature is disabled. """ - state: Literal["ACTIVE", "PAUSED"] + state: Literal["ACTIVE", "PAUSED", "CLOSED"] """Account state: - `ACTIVE` - Account is able to transact and create new cards. - `PAUSED` - Account will not be able to transact or create new cards. It can be - set back to `ACTIVE`. + set back to `ACTIVE`. `CLOSED` - Account will not be able to transact or + create new cards. `CLOSED` cards are also unable to be transitioned to + `ACTIVE` or `PAUSED` states. """ account_holder: Optional[AccountHolder] = None