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

- old
+ new

@@ -1,27 +1,28 @@ # MessenteApi::Omnimessage ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**to** | **String** | Phone number in e.164 format | -**messages** | [**Array<OneOfViberSMSWhatsAppTelegram>**](OneOfViberSMSWhatsAppTelegram.md) | An array of messages | -**dlr_url** | **String** | URL where the delivery report will be sent | [optional] -**text_store** | [**TextStore**](TextStore.md) | | [optional] -**time_to_send** | **DateTime** | Optional parameter for sending messages at some specific time in the future. Time must be specified in the ISO-8601 format. If no timezone is specified, then the timezone is assumed to be UTC Examples: * Time specified with timezone: 2018-06-22T09:05:07+00:00 Time specified in UTC: 2018-06-22T09:05:07Z * Time specified without timezone: 2018-06-22T09:05 (equivalent to 2018-06-22T09:05+00:00) | [optional] -**priority** | [**Priority**](Priority.md) | | [optional] +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **to** | **String** | Phone number in e.164 format | | +| **messages** | [**Array<OmnimessageMessagesInner>**](OmnimessageMessagesInner.md) | An array of messages | | +| **dlr_url** | **String** | URL where the delivery report will be sent | [optional] | +| **text_store** | [**TextStore**](TextStore.md) | | [optional] | +| **time_to_send** | **Time** | Optional parameter for sending messages at some specific time in the future. Time must be specified in the ISO-8601 format. If no timezone is specified, then the timezone is assumed to be UTC Examples: * Time specified with timezone: 2018-06-22T09:05:07+00:00 Time specified in UTC: 2018-06-22T09:05:07Z * Time specified without timezone: 2018-06-22T09:05 (equivalent to 2018-06-22T09:05+00:00) | [optional] | +| **priority** | [**Priority**](Priority.md) | | [optional] | -## Code Sample +## Example ```ruby -require 'MessenteApi' +require 'messente_api' -instance = MessenteApi::Omnimessage.new(to: null, - messages: null, - dlr_url: null, - text_store: null, - time_to_send: null, - priority: null) +instance = MessenteApi::Omnimessage.new( + to: null, + messages: null, + dlr_url: null, + text_store: null, + time_to_send: null, + priority: null +) ``` -