Skip to content

Commit 616608c

Browse files
feat(api): api update
1 parent 7bbb55e commit 616608c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
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: 115
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d513be954ba2cb57489bd048f93790cabb13849f0f04d328a5a15694c99550df.yml
3-
openapi_spec_hash: 0d42694f412abf65defc3f88646a809c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-028b94908fa562ed9c31c1137078f958f859e79b33b8fddbd64934e1bb4ffd32.yml
3+
openapi_spec_hash: e9a8403fd1da4edf627451a88ba27a55
44
config_hash: 1e2186b09e57d7d27b6ab5c8e6410b31

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ import java.util.Objects
1111
import java.util.Optional
1212
import kotlin.jvm.optionals.getOrNull
1313

14-
/** This endpoint can be used to unschedule any pending plan changes on an existing subscription. */
14+
/**
15+
* This endpoint can be used to unschedule any pending plan changes on an existing subscription.
16+
* When called, all upcoming plan changes will be unscheduled.
17+
*/
1518
class SubscriptionUnschedulePendingPlanChangesParams
1619
private constructor(
1720
private val subscriptionId: String?,

orb-java-core/src/main/kotlin/com/withorb/api/services/async/SubscriptionServiceAsync.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,6 +1245,7 @@ interface SubscriptionServiceAsync {
12451245

12461246
/**
12471247
* This endpoint can be used to unschedule any pending plan changes on an existing subscription.
1248+
* When called, all upcoming plan changes will be unscheduled.
12481249
*/
12491250
fun unschedulePendingPlanChanges(
12501251
subscriptionId: String

orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/SubscriptionService.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,6 +1214,7 @@ interface SubscriptionService {
12141214

12151215
/**
12161216
* This endpoint can be used to unschedule any pending plan changes on an existing subscription.
1217+
* When called, all upcoming plan changes will be unscheduled.
12171218
*/
12181219
fun unschedulePendingPlanChanges(
12191220
subscriptionId: String

0 commit comments

Comments
 (0)