docs/UpdateSubscriptionBody.md in ory-client-1.1.21 vs docs/UpdateSubscriptionBody.md in ory-client-1.1.22
- old
+ new
@@ -2,19 +2,21 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **plan_or_price** | **String** | | |
+| **interval** | **String** | monthly Monthly yearly Yearly | |
+| **plan** | **String** | | |
| **return_to** | **String** | | [optional] |
## Example
```ruby
require 'ory-client'
instance = OryClient::UpdateSubscriptionBody.new(
- plan_or_price: null,
+ interval: null,
+ plan: null,
return_to: null
)
```