@@ -1522,6 +1522,8 @@ private constructor(
15221522 * `TOO_MANY_RECENT_TOKENS`, `UNABLE_TO_ASSESS`.
15231523 * * `TOKEN_REQUESTOR_ID`: Unique identifier for the entity requesting the token.
15241524 * * `WALLET_TOKEN_STATUS`: The current status of the wallet token.
1525+ * * `CARD_STATE`: The state of the card being tokenized. Valid values are `CLOSED`, `OPEN`,
1526+ * `PAUSED`, `PENDING_ACTIVATION`, `PENDING_FULFILLMENT`.
15251527 *
15261528 * @throws LithicInvalidDataException if the JSON field has an unexpected type or is
15271529 * unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -1642,6 +1644,8 @@ private constructor(
16421644 * `TOO_MANY_RECENT_ATTEMPTS`, `TOO_MANY_RECENT_TOKENS`, `UNABLE_TO_ASSESS`.
16431645 * * `TOKEN_REQUESTOR_ID`: Unique identifier for the entity requesting the token.
16441646 * * `WALLET_TOKEN_STATUS`: The current status of the wallet token.
1647+ * * `CARD_STATE`: The state of the card being tokenized. Valid values are `CLOSED`,
1648+ * `OPEN`, `PAUSED`, `PENDING_ACTIVATION`, `PENDING_FULFILLMENT`.
16451649 */
16461650 fun attribute (attribute : Attribute ) = attribute(JsonField .of(attribute))
16471651
@@ -1795,6 +1799,8 @@ private constructor(
17951799 * `TOO_MANY_RECENT_TOKENS`, `UNABLE_TO_ASSESS`.
17961800 * * `TOKEN_REQUESTOR_ID`: Unique identifier for the entity requesting the token.
17971801 * * `WALLET_TOKEN_STATUS`: The current status of the wallet token.
1802+ * * `CARD_STATE`: The state of the card being tokenized. Valid values are `CLOSED`, `OPEN`,
1803+ * `PAUSED`, `PENDING_ACTIVATION`, `PENDING_FULFILLMENT`.
17981804 */
17991805 class Attribute @JsonCreator private constructor(private val value : JsonField <String >) :
18001806 Enum {
@@ -1831,6 +1837,8 @@ private constructor(
18311837
18321838 @JvmField val WALLET_TOKEN_STATUS = of(" WALLET_TOKEN_STATUS" )
18331839
1840+ @JvmField val CARD_STATE = of(" CARD_STATE" )
1841+
18341842 @JvmStatic fun of (value : String ) = Attribute (JsonField .of(value))
18351843 }
18361844
@@ -1846,6 +1854,7 @@ private constructor(
18461854 WALLET_RECOMMENDATION_REASONS ,
18471855 TOKEN_REQUESTOR_ID ,
18481856 WALLET_TOKEN_STATUS ,
1857+ CARD_STATE ,
18491858 }
18501859
18511860 /* *
@@ -1868,6 +1877,7 @@ private constructor(
18681877 WALLET_RECOMMENDATION_REASONS ,
18691878 TOKEN_REQUESTOR_ID ,
18701879 WALLET_TOKEN_STATUS ,
1880+ CARD_STATE ,
18711881 /* *
18721882 * An enum member indicating that [Attribute] was instantiated with an unknown
18731883 * value.
@@ -1894,6 +1904,7 @@ private constructor(
18941904 WALLET_RECOMMENDATION_REASONS -> Value .WALLET_RECOMMENDATION_REASONS
18951905 TOKEN_REQUESTOR_ID -> Value .TOKEN_REQUESTOR_ID
18961906 WALLET_TOKEN_STATUS -> Value .WALLET_TOKEN_STATUS
1907+ CARD_STATE -> Value .CARD_STATE
18971908 else -> Value ._UNKNOWN
18981909 }
18991910
@@ -1918,6 +1929,7 @@ private constructor(
19181929 WALLET_RECOMMENDATION_REASONS -> Known .WALLET_RECOMMENDATION_REASONS
19191930 TOKEN_REQUESTOR_ID -> Known .TOKEN_REQUESTOR_ID
19201931 WALLET_TOKEN_STATUS -> Known .WALLET_TOKEN_STATUS
1932+ CARD_STATE -> Known .CARD_STATE
19211933 else -> throw LithicInvalidDataException (" Unknown Attribute: $value " )
19221934 }
19231935
0 commit comments