Skip to content

Commit 3cc7ddc

Browse files
[Bot] push changes from Files.com
1 parent 0067073 commit 3cc7ddc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.21
1+
1.0.22

src/models/Message.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class Message {
5858
this.attributes.user_id = value
5959
}
6060

61-
// int64 # Project to attach the message to.
61+
// int64 # Project to which the message should be attached.
6262
getProjectId = () => this.attributes.project_id
6363

6464
setProjectId = value => {
@@ -67,7 +67,7 @@ class Message {
6767

6868

6969
// Parameters:
70-
// project_id (required) - int64 - Project to attach the message to.
70+
// project_id (required) - int64 - Project to which the message should be attached.
7171
// subject (required) - string - Message subject.
7272
// body (required) - string - Message body.
7373
update = async (params = {}) => {
@@ -173,7 +173,7 @@ class Message {
173173
// page - int64 - Current page number.
174174
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
175175
// action - string - Deprecated: If set to `count` returns a count of matching records rather than the records themselves.
176-
// project_id (required) - int64 - Project to return messages for.
176+
// project_id (required) - int64 - Project for which to return messages.
177177
static list = async (params = {}, options = {}) => {
178178
if (!params['project_id']) {
179179
throw new Error('Parameter missing: project_id')
@@ -234,7 +234,7 @@ class Message {
234234

235235
// Parameters:
236236
// user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
237-
// project_id (required) - int64 - Project to attach the message to.
237+
// project_id (required) - int64 - Project to which the message should be attached.
238238
// subject (required) - string - Message subject.
239239
// body (required) - string - Message body.
240240
static create = async (params = {}, options = {}) => {

0 commit comments

Comments
 (0)