docs/OauthRevokeSuccessResponse.md in ultracart_api-3.10.220 vs docs/OauthRevokeSuccessResponse.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,9 +1,20 @@
-# UltracartClient::OauthRevokeSuccessResponse
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**message** | **String** | Message confirming revocation of credentials | [optional]
-**successful** | **BOOLEAN** | True if revoke was successful | [optional]
-
-
+# UltracartClient::OauthRevokeSuccessResponse
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **message** | **String** | Message confirming revocation of credentials | [optional] |
+| **successful** | **Boolean** | True if revoke was successful | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::OauthRevokeSuccessResponse.new(
+ message: null,
+ successful: null
+)
+```
+