You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/increase/types/declined_transaction.py
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1225,20 +1225,6 @@ class Source(BaseModel):
1225
1225
This is an object giving more details on the network-level event that caused the Declined Transaction. For example, for a card transaction this lists the merchant's industry and location. Note that for backwards compatibility reasons, additional undocumented keys may appear in this object. These should be treated as deprecated and will be removed in the future.
1226
1226
"""
1227
1227
1228
-
ach_decline: Optional[SourceACHDecline] =None
1229
-
"""An ACH Decline object.
1230
-
1231
-
This field will be present in the JSON response if and only if `category` is
1232
-
equal to `ach_decline`.
1233
-
"""
1234
-
1235
-
card_decline: Optional[SourceCardDecline] =None
1236
-
"""A Card Decline object.
1237
-
1238
-
This field will be present in the JSON response if and only if `category` is
1239
-
equal to `card_decline`.
1240
-
"""
1241
-
1242
1228
category: Literal[
1243
1229
"ach_decline",
1244
1230
"card_decline",
@@ -1272,6 +1258,20 @@ class Source(BaseModel):
1272
1258
reason.
1273
1259
"""
1274
1260
1261
+
ach_decline: Optional[SourceACHDecline] =None
1262
+
"""An ACH Decline object.
1263
+
1264
+
This field will be present in the JSON response if and only if `category` is
1265
+
equal to `ach_decline`.
1266
+
"""
1267
+
1268
+
card_decline: Optional[SourceCardDecline] =None
1269
+
"""A Card Decline object.
1270
+
1271
+
This field will be present in the JSON response if and only if `category` is
0 commit comments