@@ -144,6 +144,12 @@ module Lithic
144144 # trailing hour up and until the authorization.
145145 # - `CARD_TRANSACTION_COUNT_24H`: The number of transactions on the card in the
146146 # trailing 24 hours up and until the authorization.
147+ # - `CARD_DECLINE_COUNT_15M`: The number of declined transactions on the card in
148+ # the trailing 15 minutes before the authorization.
149+ # - `CARD_DECLINE_COUNT_1H`: The number of declined transactions on the card in
150+ # the trailing hour up and until the authorization.
151+ # - `CARD_DECLINE_COUNT_24H`: The number of declined transactions on the card in
152+ # the trailing 24 hours up and until the authorization.
147153 # - `CARD_STATE`: The current state of the card associated with the transaction.
148154 # Valid values are `CLOSED`, `OPEN`, `PAUSED`, `PENDING_ACTIVATION`,
149155 # `PENDING_FULFILLMENT`.
@@ -233,6 +239,12 @@ module Lithic
233239 # trailing hour up and until the authorization.
234240 # - `CARD_TRANSACTION_COUNT_24H`: The number of transactions on the card in the
235241 # trailing 24 hours up and until the authorization.
242+ # - `CARD_DECLINE_COUNT_15M`: The number of declined transactions on the card in
243+ # the trailing 15 minutes before the authorization.
244+ # - `CARD_DECLINE_COUNT_1H`: The number of declined transactions on the card in
245+ # the trailing hour up and until the authorization.
246+ # - `CARD_DECLINE_COUNT_24H`: The number of declined transactions on the card in
247+ # the trailing 24 hours up and until the authorization.
236248 # - `CARD_STATE`: The current state of the card associated with the transaction.
237249 # Valid values are `CLOSED`, `OPEN`, `PAUSED`, `PENDING_ACTIVATION`,
238250 # `PENDING_FULFILLMENT`.
@@ -319,6 +331,12 @@ module Lithic
319331 # trailing hour up and until the authorization.
320332 # - `CARD_TRANSACTION_COUNT_24H`: The number of transactions on the card in the
321333 # trailing 24 hours up and until the authorization.
334+ # - `CARD_DECLINE_COUNT_15M`: The number of declined transactions on the card in
335+ # the trailing 15 minutes before the authorization.
336+ # - `CARD_DECLINE_COUNT_1H`: The number of declined transactions on the card in
337+ # the trailing hour up and until the authorization.
338+ # - `CARD_DECLINE_COUNT_24H`: The number of declined transactions on the card in
339+ # the trailing 24 hours up and until the authorization.
322340 # - `CARD_STATE`: The current state of the card associated with the transaction.
323341 # Valid values are `CLOSED`, `OPEN`, `PAUSED`, `PENDING_ACTIVATION`,
324342 # `PENDING_FULFILLMENT`.
@@ -422,6 +440,21 @@ module Lithic
422440 :CARD_TRANSACTION_COUNT_24H ,
423441 Lithic ::AuthRules ::ConditionalAuthorizationActionParameters ::Condition ::Attribute ::TaggedSymbol
424442 )
443+ CARD_DECLINE_COUNT_15_M =
444+ T . let (
445+ :CARD_DECLINE_COUNT_15M ,
446+ Lithic ::AuthRules ::ConditionalAuthorizationActionParameters ::Condition ::Attribute ::TaggedSymbol
447+ )
448+ CARD_DECLINE_COUNT_1_H =
449+ T . let (
450+ :CARD_DECLINE_COUNT_1H ,
451+ Lithic ::AuthRules ::ConditionalAuthorizationActionParameters ::Condition ::Attribute ::TaggedSymbol
452+ )
453+ CARD_DECLINE_COUNT_24_H =
454+ T . let (
455+ :CARD_DECLINE_COUNT_24H ,
456+ Lithic ::AuthRules ::ConditionalAuthorizationActionParameters ::Condition ::Attribute ::TaggedSymbol
457+ )
425458 CARD_STATE =
426459 T . let (
427460 :CARD_STATE ,
0 commit comments