Skip to content

Commit 0c0d055

Browse files
feat(api): api update
1 parent 6996f34 commit 0c0d055

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
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: 116
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-ff68c7ee2669d61716781d01b93f34186fb7a19ff4ad6fc2c0b8f9f4d9c4a588.yml
3-
openapi_spec_hash: 17bdc6b1ca2531dc884c6d156f404f0c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d4db2933d3d6b8c855e3351dcce658777ec9a413eb78f176b2e63b1e99fddf68.yml
3+
openapi_spec_hash: 858adc7f2e0c8c631ef733dfd8f9ea0a
44
config_hash: 3c3524be9607afb24d2139ce26ce5389

orb-java-core/src/main/kotlin/com/withorb/api/models/NewAllocationPrice.kt

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

366366
@JvmField val ANNUAL = of("annual")
367367

368-
@JvmField val CUSTOM = of("custom")
369-
370368
@JvmStatic fun of(value: String) = Cadence(JsonField.of(value))
371369
}
372370

@@ -377,7 +375,6 @@ private constructor(
377375
QUARTERLY,
378376
SEMI_ANNUAL,
379377
ANNUAL,
380-
CUSTOM,
381378
}
382379

383380
/**
@@ -395,7 +392,6 @@ private constructor(
395392
QUARTERLY,
396393
SEMI_ANNUAL,
397394
ANNUAL,
398-
CUSTOM,
399395
/** An enum member indicating that [Cadence] was instantiated with an unknown value. */
400396
_UNKNOWN,
401397
}
@@ -414,7 +410,6 @@ private constructor(
414410
QUARTERLY -> Value.QUARTERLY
415411
SEMI_ANNUAL -> Value.SEMI_ANNUAL
416412
ANNUAL -> Value.ANNUAL
417-
CUSTOM -> Value.CUSTOM
418413
else -> Value._UNKNOWN
419414
}
420415

@@ -433,7 +428,6 @@ private constructor(
433428
QUARTERLY -> Known.QUARTERLY
434429
SEMI_ANNUAL -> Known.SEMI_ANNUAL
435430
ANNUAL -> Known.ANNUAL
436-
CUSTOM -> Known.CUSTOM
437431
else -> throw OrbInvalidDataException("Unknown Cadence: $value")
438432
}
439433

0 commit comments

Comments
 (0)