Skip to content

Commit ced5b7f

Browse files
feat(api): api update
1 parent 12df111 commit ced5b7f

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 232
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-74ade94ecfd7ae3c09e8eb53591e3a346d7a1a8e4fdcc88468aaf732e550d360.yml
3-
openapi_spec_hash: bd4e4f623f593b9d0b9c139fde8245e4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ff40c6e135e905af36aac783b7524ae0d9f13cd1e165ee56da3b244ae76ab94e.yml
3+
openapi_spec_hash: b0c7738dc63f7362a11b27c7369d7441
44
config_hash: 4b562e97b3d8b4cba758a87d4927a76d

increase-java-core/src/main/kotlin/com/increase/api/models/checkdeposits/CheckDeposit.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2109,6 +2109,9 @@ private constructor(
21092109
/** The check was rejected at the user's request. */
21102110
@JvmField val REQUESTED_BY_USER = of("requested_by_user")
21112111

2112+
/** The check is not a U.S. domestic check and cannot be processed. */
2113+
@JvmField val INTERNATIONAL = of("international")
2114+
21122115
/** The check was rejected for an unknown reason. */
21132116
@JvmField val UNKNOWN = of("unknown")
21142117

@@ -2137,6 +2140,8 @@ private constructor(
21372140
DEPOSIT_WINDOW_EXPIRED,
21382141
/** The check was rejected at the user's request. */
21392142
REQUESTED_BY_USER,
2143+
/** The check is not a U.S. domestic check and cannot be processed. */
2144+
INTERNATIONAL,
21402145
/** The check was rejected for an unknown reason. */
21412146
UNKNOWN,
21422147
}
@@ -2171,6 +2176,8 @@ private constructor(
21712176
DEPOSIT_WINDOW_EXPIRED,
21722177
/** The check was rejected at the user's request. */
21732178
REQUESTED_BY_USER,
2179+
/** The check is not a U.S. domestic check and cannot be processed. */
2180+
INTERNATIONAL,
21742181
/** The check was rejected for an unknown reason. */
21752182
UNKNOWN,
21762183
/**
@@ -2198,6 +2205,7 @@ private constructor(
21982205
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
21992206
DEPOSIT_WINDOW_EXPIRED -> Value.DEPOSIT_WINDOW_EXPIRED
22002207
REQUESTED_BY_USER -> Value.REQUESTED_BY_USER
2208+
INTERNATIONAL -> Value.INTERNATIONAL
22012209
UNKNOWN -> Value.UNKNOWN
22022210
else -> Value._UNKNOWN
22032211
}
@@ -2223,6 +2231,7 @@ private constructor(
22232231
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
22242232
DEPOSIT_WINDOW_EXPIRED -> Known.DEPOSIT_WINDOW_EXPIRED
22252233
REQUESTED_BY_USER -> Known.REQUESTED_BY_USER
2234+
INTERNATIONAL -> Known.INTERNATIONAL
22262235
UNKNOWN -> Known.UNKNOWN
22272236
else -> throw IncreaseInvalidDataException("Unknown Reason: $value")
22282237
}

increase-java-core/src/main/kotlin/com/increase/api/models/declinedtransactions/DeclinedTransaction.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13936,6 +13936,9 @@ private constructor(
1393613936
/** The check was rejected at the user's request. */
1393713937
@JvmField val REQUESTED_BY_USER = of("requested_by_user")
1393813938

13939+
/** The check is not a U.S. domestic check and cannot be processed. */
13940+
@JvmField val INTERNATIONAL = of("international")
13941+
1393913942
/** The check was rejected for an unknown reason. */
1394013943
@JvmField val UNKNOWN = of("unknown")
1394113944

@@ -13964,6 +13967,8 @@ private constructor(
1396413967
DEPOSIT_WINDOW_EXPIRED,
1396513968
/** The check was rejected at the user's request. */
1396613969
REQUESTED_BY_USER,
13970+
/** The check is not a U.S. domestic check and cannot be processed. */
13971+
INTERNATIONAL,
1396713972
/** The check was rejected for an unknown reason. */
1396813973
UNKNOWN,
1396913974
}
@@ -13998,6 +14003,8 @@ private constructor(
1399814003
DEPOSIT_WINDOW_EXPIRED,
1399914004
/** The check was rejected at the user's request. */
1400014005
REQUESTED_BY_USER,
14006+
/** The check is not a U.S. domestic check and cannot be processed. */
14007+
INTERNATIONAL,
1400114008
/** The check was rejected for an unknown reason. */
1400214009
UNKNOWN,
1400314010
/**
@@ -14026,6 +14033,7 @@ private constructor(
1402614033
SUSPECTED_FRAUD -> Value.SUSPECTED_FRAUD
1402714034
DEPOSIT_WINDOW_EXPIRED -> Value.DEPOSIT_WINDOW_EXPIRED
1402814035
REQUESTED_BY_USER -> Value.REQUESTED_BY_USER
14036+
INTERNATIONAL -> Value.INTERNATIONAL
1402914037
UNKNOWN -> Value.UNKNOWN
1403014038
else -> Value._UNKNOWN
1403114039
}
@@ -14051,6 +14059,7 @@ private constructor(
1405114059
SUSPECTED_FRAUD -> Known.SUSPECTED_FRAUD
1405214060
DEPOSIT_WINDOW_EXPIRED -> Known.DEPOSIT_WINDOW_EXPIRED
1405314061
REQUESTED_BY_USER -> Known.REQUESTED_BY_USER
14062+
INTERNATIONAL -> Known.INTERNATIONAL
1405414063
UNKNOWN -> Known.UNKNOWN
1405514064
else -> throw IncreaseInvalidDataException("Unknown Reason: $value")
1405614065
}

0 commit comments

Comments
 (0)