Skip to content

Commit 6c818d4

Browse files
committed
Merge pull request #35 from sendinblue/feature_new-updates
sendTransacSms content length description update
2 parents 1775593 + 5929749 commit 6c818d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/SendTransacSms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**sender** | **String** | Name of the sender. Only alphanumeric characters. No more than 11 characters |
77
**recipient** | **String** | Mobile number to send SMS with the country code |
8-
**content** | **String** | Content of the message. If more than 160 characters long, multiple text messages will be sent |
8+
**content** | **String** | Content of the message. If more than 160 characters long, will be sent as multiple text messages |
99
**type** | **String** | Type of the SMS | [optional] [default to 'transactional']
1010
**tag** | **String** | Tag of the message | [optional]
1111
**webUrl** | **String** | Webhook to call for each event triggered by the message (delivered etc.) | [optional]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sib-api-v3-sdk",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Official SendinBlue provided RESTFul API V3 nodejs library",
55
"license": "ISC",
66
"main": "src/index.js",

src/model/SendTransacSms.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* @class
4747
* @param sender {String} Name of the sender. Only alphanumeric characters. No more than 11 characters
4848
* @param recipient {String} Mobile number to send SMS with the country code
49-
* @param content {String} Content of the message. If more than 160 characters long, multiple text messages will be sent
49+
* @param content {String} Content of the message. If more than 160 characters long, will be sent as multiple text messages
5050
*/
5151
var exports = function(sender, recipient, content) {
5252
var _this = this;
@@ -103,7 +103,7 @@
103103
*/
104104
exports.prototype['recipient'] = undefined;
105105
/**
106-
* Content of the message. If more than 160 characters long, multiple text messages will be sent
106+
* Content of the message. If more than 160 characters long, will be sent as multiple text messages
107107
* @member {String} content
108108
*/
109109
exports.prototype['content'] = undefined;

0 commit comments

Comments
 (0)