@@ -58,7 +58,7 @@ class Message {
58
58
this . attributes . user_id = value
59
59
}
60
60
61
- // int64 # Project to attach the message to .
61
+ // int64 # Project to which the message should be attached .
62
62
getProjectId = ( ) => this . attributes . project_id
63
63
64
64
setProjectId = value => {
@@ -67,7 +67,7 @@ class Message {
67
67
68
68
69
69
// 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 .
71
71
// subject (required) - string - Message subject.
72
72
// body (required) - string - Message body.
73
73
update = async ( params = { } ) => {
@@ -173,7 +173,7 @@ class Message {
173
173
// page - int64 - Current page number.
174
174
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
175
175
// 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.
177
177
static list = async ( params = { } , options = { } ) => {
178
178
if ( ! params [ 'project_id' ] ) {
179
179
throw new Error ( 'Parameter missing: project_id' )
@@ -234,7 +234,7 @@ class Message {
234
234
235
235
// Parameters:
236
236
// 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 .
238
238
// subject (required) - string - Message subject.
239
239
// body (required) - string - Message body.
240
240
static create = async ( params = { } , options = { } ) => {
0 commit comments