docs/LibraryItemPurchasedMeta.md in ultracart_api-3.10.220 vs docs/LibraryItemPurchasedMeta.md in ultracart_api-4.0.32.rc

- old
+ new

@@ -1,10 +1,22 @@ -# UltracartClient::LibraryItemPurchasedMeta - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**most_recent_version** | **Integer** | The most recent version of the item purchased | [optional] -**my_purchased_version** | **Integer** | If this is a public item and the merchant has already purchased it, this is their version. If not yet purchased, this will be zero. This value will only be populated during a searchPublicItems() call. | [optional] -**upgrade_available** | **BOOLEAN** | True if the most recent version of this purchase it greater than what was purchased | [optional] - - +# UltracartClient::LibraryItemPurchasedMeta + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **most_recent_version** | **Integer** | The most recent version of the item purchased | [optional] | +| **my_purchased_version** | **Integer** | If this is a public item and the merchant has already purchased it, this is their version. If not yet purchased, this will be zero. This value will only be populated during a searchPublicItems() call. | [optional] | +| **upgrade_available** | **Boolean** | True if the most recent version of this purchase it greater than what was purchased | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::LibraryItemPurchasedMeta.new( + most_recent_version: null, + my_purchased_version: null, + upgrade_available: null +) +``` +