Skip to content

sendTransacSms content length description update #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/SendTransacSms.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**sender** | **String** | Name of the sender. Only alphanumeric characters. No more than 11 characters |
**recipient** | **String** | Mobile number to send SMS with the country code |
**content** | **String** | Content of the message. If more than 160 characters long, multiple text messages will be sent |
**content** | **String** | Content of the message. If more than 160 characters long, will be sent as multiple text messages |
**type** | **String** | Type of the SMS | [optional] [default to 'transactional']
**tag** | **String** | Tag of the message | [optional]
**webUrl** | **String** | Webhook to call for each event triggered by the message (delivered etc.) | [optional]
Expand Down
356 changes: 356 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sib-api-v3-sdk",
"version": "7.0.0",
"version": "7.0.1",
"description": "Official SendinBlue provided RESTFul API V3 nodejs library",
"license": "ISC",
"main": "src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/model/SendTransacSms.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* @class
* @param sender {String} Name of the sender. Only alphanumeric characters. No more than 11 characters
* @param recipient {String} Mobile number to send SMS with the country code
* @param content {String} Content of the message. If more than 160 characters long, multiple text messages will be sent
* @param content {String} Content of the message. If more than 160 characters long, will be sent as multiple text messages
*/
var exports = function(sender, recipient, content) {
var _this = this;
Expand Down Expand Up @@ -103,7 +103,7 @@
*/
exports.prototype['recipient'] = undefined;
/**
* Content of the message. If more than 160 characters long, multiple text messages will be sent
* Content of the message. If more than 160 characters long, will be sent as multiple text messages
* @member {String} content
*/
exports.prototype['content'] = undefined;
Expand Down