# MessenteApi::WhatsApp ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **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 require 'messente_api' instance = MessenteApi::WhatsApp.new( sender: null, validity: 360, ttl: 21600, template: null, text: null, channel: null ) ```