Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-28ffd3b61bd618b2a60b46dd2afb8f52370c43e02cab2e9106465c3cffafb95a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ce741f23d99b551b38099da78d730af0cf9019e3b51e61bc988a5e5979c26143.yml
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,9 @@ private constructor(
/** Blue Ridge Bank, N.A. */
@JvmField val BLUE_RIDGE_BANK = of("blue_ridge_bank")

/** Core Bank */
@JvmField val CORE_BANK = of("core_bank")

/** First Internet Bank of Indiana */
@JvmField val FIRST_INTERNET_BANK = of("first_internet_bank")

Expand All @@ -561,6 +564,8 @@ private constructor(
enum class Known {
/** Blue Ridge Bank, N.A. */
BLUE_RIDGE_BANK,
/** Core Bank */
CORE_BANK,
/** First Internet Bank of Indiana */
FIRST_INTERNET_BANK,
/** Grasshopper Bank */
Expand All @@ -579,6 +584,8 @@ private constructor(
enum class Value {
/** Blue Ridge Bank, N.A. */
BLUE_RIDGE_BANK,
/** Core Bank */
CORE_BANK,
/** First Internet Bank of Indiana */
FIRST_INTERNET_BANK,
/** Grasshopper Bank */
Expand All @@ -597,6 +604,7 @@ private constructor(
fun value(): Value =
when (this) {
BLUE_RIDGE_BANK -> Value.BLUE_RIDGE_BANK
CORE_BANK -> Value.CORE_BANK
FIRST_INTERNET_BANK -> Value.FIRST_INTERNET_BANK
GRASSHOPPER_BANK -> Value.GRASSHOPPER_BANK
else -> Value._UNKNOWN
Expand All @@ -614,6 +622,7 @@ private constructor(
fun known(): Known =
when (this) {
BLUE_RIDGE_BANK -> Known.BLUE_RIDGE_BANK
CORE_BANK -> Known.CORE_BANK
FIRST_INTERNET_BANK -> Known.FIRST_INTERNET_BANK
GRASSHOPPER_BANK -> Known.GRASSHOPPER_BANK
else -> throw IncreaseInvalidDataException("Unknown Bank: $value")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,9 @@ private constructor(
/** Blue Ridge Bank, N.A. */
@JvmField val BLUE_RIDGE_BANK = of("blue_ridge_bank")

/** Core Bank */
@JvmField val CORE_BANK = of("core_bank")

/** First Internet Bank of Indiana */
@JvmField val FIRST_INTERNET_BANK = of("first_internet_bank")

Expand All @@ -357,6 +360,8 @@ private constructor(
enum class Known {
/** Blue Ridge Bank, N.A. */
BLUE_RIDGE_BANK,
/** Core Bank */
CORE_BANK,
/** First Internet Bank of Indiana */
FIRST_INTERNET_BANK,
/** Grasshopper Bank */
Expand All @@ -375,6 +380,8 @@ private constructor(
enum class Value {
/** Blue Ridge Bank, N.A. */
BLUE_RIDGE_BANK,
/** Core Bank */
CORE_BANK,
/** First Internet Bank of Indiana */
FIRST_INTERNET_BANK,
/** Grasshopper Bank */
Expand All @@ -393,6 +400,7 @@ private constructor(
fun value(): Value =
when (this) {
BLUE_RIDGE_BANK -> Value.BLUE_RIDGE_BANK
CORE_BANK -> Value.CORE_BANK
FIRST_INTERNET_BANK -> Value.FIRST_INTERNET_BANK
GRASSHOPPER_BANK -> Value.GRASSHOPPER_BANK
else -> Value._UNKNOWN
Expand All @@ -410,6 +418,7 @@ private constructor(
fun known(): Known =
when (this) {
BLUE_RIDGE_BANK -> Known.BLUE_RIDGE_BANK
CORE_BANK -> Known.CORE_BANK
FIRST_INTERNET_BANK -> Known.FIRST_INTERNET_BANK
GRASSHOPPER_BANK -> Known.GRASSHOPPER_BANK
else -> throw IncreaseInvalidDataException("Unknown Bank: $value")
Expand Down