docs/WhatsApp.md in messente_api-2.2.0 vs docs/WhatsApp.md in messente_api-2.3.0

- old
+ new

@@ -6,10 +6,11 @@ | ---- | ---- | ----------- | ----- | | **sender** | **String** | Phone number or alphanumeric sender name | [optional] | | **validity** | **Integer** | After how many minutes this channel is considered as failed and the next channel is attempted | [optional] | | **ttl** | **Integer** | After how many seconds this channel is considered as failed and the next channel is attempted. Only one of \"ttl\" and \"validity\" can be used. | [optional] | | **template** | [**WhatsAppTemplate**](WhatsAppTemplate.md) | | [optional] | +| **text** | [**WhatsAppText**](WhatsAppText.md) | | [optional] | | **channel** | **String** | The channel used to deliver the message | [optional][default to 'whatsapp'] | ## Example ```ruby @@ -18,9 +19,10 @@ instance = MessenteApi::WhatsApp.new( sender: null, validity: 360, ttl: 21600, template: null, + text: null, channel: null ) ```