Skip to content

Commit 6d637cf

Browse files
feat(api): add DELINQUENT substatus to financial account status updates
1 parent 9dee9d6 commit 6d637cf

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-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: 190
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-df28ee30a3bd4fa595befc2048216e1ee1d3845fcfcf179c1c694ba58fd5e4ed.yml
3-
openapi_spec_hash: 79bfc19d85c7f03754684d794653e333
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-fd53f07a8b1f148011972d7eba834d5995778d707ff8ef1ead92580b44142a15.yml
3+
openapi_spec_hash: 45892e6361542824364d82181d4eb80d
44
config_hash: 5eca052bb23d273fa970eac3127dd919

lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountUpdateStatusParams.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,8 @@ private constructor(
779779

780780
@JvmField val INTEREST_AND_FEES_PAUSED = of("INTEREST_AND_FEES_PAUSED")
781781

782+
@JvmField val DELINQUENT = of("DELINQUENT")
783+
782784
@JvmStatic fun of(value: String) = UpdateFinancialAccountSubstatus(JsonField.of(value))
783785
}
784786

@@ -789,6 +791,7 @@ private constructor(
789791
BANK_REQUEST,
790792
CHARGED_OFF_DELINQUENT,
791793
INTEREST_AND_FEES_PAUSED,
794+
DELINQUENT,
792795
}
793796

794797
/**
@@ -808,6 +811,7 @@ private constructor(
808811
BANK_REQUEST,
809812
CHARGED_OFF_DELINQUENT,
810813
INTEREST_AND_FEES_PAUSED,
814+
DELINQUENT,
811815
/**
812816
* An enum member indicating that [UpdateFinancialAccountSubstatus] was instantiated
813817
* with an unknown value.
@@ -829,6 +833,7 @@ private constructor(
829833
BANK_REQUEST -> Value.BANK_REQUEST
830834
CHARGED_OFF_DELINQUENT -> Value.CHARGED_OFF_DELINQUENT
831835
INTEREST_AND_FEES_PAUSED -> Value.INTEREST_AND_FEES_PAUSED
836+
DELINQUENT -> Value.DELINQUENT
832837
else -> Value._UNKNOWN
833838
}
834839

@@ -848,6 +853,7 @@ private constructor(
848853
BANK_REQUEST -> Known.BANK_REQUEST
849854
CHARGED_OFF_DELINQUENT -> Known.CHARGED_OFF_DELINQUENT
850855
INTEREST_AND_FEES_PAUSED -> Known.INTEREST_AND_FEES_PAUSED
856+
DELINQUENT -> Known.DELINQUENT
851857
else ->
852858
throw LithicInvalidDataException(
853859
"Unknown UpdateFinancialAccountSubstatus: $value"

0 commit comments

Comments
 (0)