11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3+ from typing import List
34from datetime import datetime
45from typing_extensions import Literal
56
67from .._models import BaseModel
78
8- __all__ = ["DigitalWalletToken" ]
9+ __all__ = ["DigitalWalletToken" , "Update" ]
10+
11+
12+ class Update (BaseModel ):
13+ status : Literal ["active" , "inactive" , "suspended" , "deactivated" ]
14+ """The status the update changed this Digital Wallet Token to.
15+
16+ - `active` - The digital wallet token is active.
17+ - `inactive` - The digital wallet token has been created but not successfully
18+ activated via two-factor authentication yet.
19+ - `suspended` - The digital wallet token has been temporarily paused.
20+ - `deactivated` - The digital wallet token has been permanently canceled.
21+ """
22+
23+ timestamp : datetime
24+ """
25+ The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
26+ the update happened.
27+ """
928
1029
1130class DigitalWalletToken (BaseModel ):
@@ -18,7 +37,7 @@ class DigitalWalletToken(BaseModel):
1837 created_at : datetime
1938 """
2039 The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
21- the Card was created.
40+ the Digital Wallet Token was created.
2241 """
2342
2443 status : Literal ["active" , "inactive" , "suspended" , "deactivated" ]
@@ -45,3 +64,6 @@ class DigitalWalletToken(BaseModel):
4564
4665 For this resource it will always be `digital_wallet_token`.
4766 """
67+
68+ updates : List [Update ]
69+ """Updates to the Digital Wallet Token."""
0 commit comments