docs/ErrorItemOmnichannel.md in messente_api-1.4.0 vs docs/ErrorItemOmnichannel.md in messente_api-2.1.0

- old
+ new

@@ -1,23 +1,24 @@ # MessenteApi::ErrorItemOmnichannel ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**title** | [**ErrorTitleOmnichannel**](ErrorTitleOmnichannel.md) | | -**detail** | **String** | Free form more detailed description of the error | -**code** | [**ErrorCodeOmnichannel**](ErrorCodeOmnichannel.md) | | -**source** | **String** | Describes which field is causing the issue in the payload, null for non 400 status code responses | +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **title** | [**ErrorTitleOmnichannel**](ErrorTitleOmnichannel.md) | | | +| **detail** | **String** | Free form more detailed description of the error | | +| **code** | [**ErrorCodeOmnichannel**](ErrorCodeOmnichannel.md) | | | +| **source** | **String** | Describes which field is causing the issue in the payload, null for non 400 status code responses | | -## Code Sample +## Example ```ruby -require 'MessenteApi' +require 'messente_api' -instance = MessenteApi::ErrorItemOmnichannel.new(title: null, - detail: null, - code: null, - source: null) +instance = MessenteApi::ErrorItemOmnichannel.new( + title: null, + detail: null, + code: null, + source: null +) ``` -