File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
orb-java-core/src/main/kotlin/com/withorb/api/models Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
1
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
4
4
config_hash : 3c3524be9607afb24d2139ce26ce5389
Original file line number Diff line number Diff line change @@ -365,8 +365,6 @@ private constructor(
365
365
366
366
@JvmField val ANNUAL = of(" annual" )
367
367
368
- @JvmField val CUSTOM = of(" custom" )
369
-
370
368
@JvmStatic fun of (value : String ) = Cadence (JsonField .of(value))
371
369
}
372
370
@@ -377,7 +375,6 @@ private constructor(
377
375
QUARTERLY ,
378
376
SEMI_ANNUAL ,
379
377
ANNUAL ,
380
- CUSTOM ,
381
378
}
382
379
383
380
/* *
@@ -395,7 +392,6 @@ private constructor(
395
392
QUARTERLY ,
396
393
SEMI_ANNUAL ,
397
394
ANNUAL ,
398
- CUSTOM ,
399
395
/* * An enum member indicating that [Cadence] was instantiated with an unknown value. */
400
396
_UNKNOWN ,
401
397
}
@@ -414,7 +410,6 @@ private constructor(
414
410
QUARTERLY -> Value .QUARTERLY
415
411
SEMI_ANNUAL -> Value .SEMI_ANNUAL
416
412
ANNUAL -> Value .ANNUAL
417
- CUSTOM -> Value .CUSTOM
418
413
else -> Value ._UNKNOWN
419
414
}
420
415
@@ -433,7 +428,6 @@ private constructor(
433
428
QUARTERLY -> Known .QUARTERLY
434
429
SEMI_ANNUAL -> Known .SEMI_ANNUAL
435
430
ANNUAL -> Known .ANNUAL
436
- CUSTOM -> Known .CUSTOM
437
431
else -> throw OrbInvalidDataException (" Unknown Cadence: $value " )
438
432
}
439
433
You can’t perform that action at this time.
0 commit comments