You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Messente API Library
2
2
3
3
- Messente API version: 2.0.0
4
-
- Ruby gem version: 2.4.1
4
+
- Ruby gem version: 2.5.0
5
5
6
6
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
Copy file name to clipboardExpand all lines: docs/BulkMessagingApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ MessenteApi.configure do |config|
26
26
end
27
27
28
28
api_instance =MessenteApi::BulkMessagingApi.new
29
-
bulk_omnimessage =MessenteApi::BulkOmnimessage.new({messages: [MessenteApi::Omnimessage.new({to:'to_example', messages: [MessenteApi::SMS.new({text:'Hello world!'})]})]}) # BulkOmnimessage | Bulk Omnimessage to be sent
29
+
bulk_omnimessage =MessenteApi::BulkOmnimessage.new({messages: [MessenteApi::Omnimessage.new({to:'to_example', messages: [MessenteApi::OmnimessageMessagesInner.new({sender:'sender_example', text:'text_example'})]})]}) # BulkOmnimessage | Bulk Omnimessage to be sent
Copy file name to clipboardExpand all lines: docs/OmnimessageApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ MessenteApi.configure do |config|
95
95
end
96
96
97
97
api_instance =MessenteApi::OmnimessageApi.new
98
-
omnimessage =MessenteApi::Omnimessage.new({to:'to_example', messages: [MessenteApi::SMS.new({text:'Hello world!'})]}) # Omnimessage | Omnimessage to be sent
98
+
omnimessage =MessenteApi::Omnimessage.new({to:'to_example', messages: [MessenteApi::OmnimessageMessagesInner.new({sender:'sender_example', text:'text_example'})]}) # Omnimessage | Omnimessage to be sent
Find the appropriate object from the `openapi_one_of` list and casts the data into it.
27
-
28
-
#### Example
3
+
## Properties
4
+
5
+
| Name | Type | Description | Notes |
6
+
| ---- | ---- | ----------- | ----- |
7
+
|**sender**|**String**| Phone number or alphanumeric sender name ||
8
+
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted.Only one of \"ttl\" and \"validity\" can be used. |[optional]|
9
+
|**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]|
10
+
|**text**|**String**| Text content of the RCS message ||
11
+
|**image_url**|**String**| URL for the embedded image Valid combinations: 1) image_url, 2) text, image_url, button_url, button_text |[optional]|
12
+
|**button_url**|**String**| URL of the button, must be specified along with ''text'', ''button_text'' and ''image_url'' (optional) |[optional]|
13
+
|**button_text**|**String**| Must be specified along with ''text'', ''button_url'', ''button_text'', ''image_url'' (optional) |[optional]|
14
+
|**channel**|**String**| The channel used to deliver the message |[optional][default to 'rcs']|
|**autoconvert**|**String**| Defines how non-GSM characters will be treated: - \"on\" Use replacement settings from the account's [API Auto Replace settings page](https://dashboard.messente.com/api-settings/auto-replace) (default) - \"full\" All non GSM 03.38 characters will be replaced with suitable alternatives - \"off\" Message content is not modified in any way |[optional]|
|**channel**|**String**| The channel used to deliver the message |[optional][default to 'rcs']|
8
+
|**sender**|**String**| Phone number or alphanumeric sender name ||
9
+
|**validity**|**Integer**| After how many minutes this channel is considered as failed and the next channel is attempted.Only one of \"ttl\" and \"validity\" can be used. |[optional]|
10
+
|**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]|
11
+
|**text**|**String**| Text content of the RCS message |[optional]|
12
+
|**suggestions**|[**Array<RcsSuggestion>**](RcsSuggestion.md)| List of suggestions to include with the message |[optional]|
0 commit comments