File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Name | Type | Description | Notes
5
5
------------ | ------------- | ------------- | -------------
6
6
** sender** | ** String** | Name of the sender. Only alphanumeric characters. No more than 11 characters |
7
7
** 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 |
9
9
** type** | ** String** | Type of the SMS | [ optional] [ default to ' ; transactional' ; ]
10
10
** tag** | ** String** | Tag of the message | [ optional]
11
11
** webUrl** | ** String** | Webhook to call for each event triggered by the message (delivered etc.) | [ optional]
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sib-api-v3-sdk" ,
3
- "version" : " 7.0.0 " ,
3
+ "version" : " 7.0.1 " ,
4
4
"description" : " Official SendinBlue provided RESTFul API V3 nodejs library" ,
5
5
"license" : " ISC" ,
6
6
"main" : " src/index.js" ,
Original file line number Diff line number Diff line change 46
46
* @class
47
47
* @param sender {String} Name of the sender. Only alphanumeric characters. No more than 11 characters
48
48
* @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
50
50
*/
51
51
var exports = function ( sender , recipient , content ) {
52
52
var _this = this ;
103
103
*/
104
104
exports . prototype [ 'recipient' ] = undefined ;
105
105
/**
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
107
107
* @member {String} content
108
108
*/
109
109
exports . prototype [ 'content' ] = undefined ;
You can’t perform that action at this time.
0 commit comments