Sha256: 0c3cae613a783696d3ee115e817761e831cdebe35c6342a00c75a3bee755f904
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
# MessenteApi::Telegram ## 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] | | **text** | **String** | Plaintext content for Telegram | [optional] | | **image_url** | **String** | URL for the embedded image. Mutually exclusive with \"document_url\" and \"audio_url\" | [optional] | | **document_url** | **String** | URL for the embedded image. Mutually exclusive with \"audio_url\" and \"image_url\" | [optional] | | **audio_url** | **String** | URL for the embedded image. Mutually exclusive with \"document_url\" and \"image_url\" | [optional] | | **channel** | **String** | The channel used to deliver the message | [optional][default to 'telegram'] | ## Example ```ruby require 'messente_api' instance = MessenteApi::Telegram.new( sender: null, validity: 360, text: null, image_url: null, document_url: null, audio_url: null, channel: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
messente_api-2.3.0 | docs/Telegram.md |
messente_api-2.2.0 | docs/Telegram.md |
messente_api-2.1.0 | docs/Telegram.md |