You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models/InboxRecipient.md
-5
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@
17
17
*`note` (string): A note sent to the recipient with the inbox.
18
18
*`recipient` (string): The recipient's email address.
19
19
*`sent_at` (date-time): When the Inbox was shared with this recipient.
20
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
21
20
*`inbox_id` (int64): Inbox to share.
22
21
*`share_after_create` (boolean): Set to true to share the link with the recipient upon creation.
23
22
@@ -27,7 +26,6 @@
27
26
28
27
```
29
28
await InboxRecipient.list({
30
-
'user_id': 1,
31
29
'per_page': 1,
32
30
'inbox_id': 1,
33
31
})
@@ -36,7 +34,6 @@ await InboxRecipient.list({
36
34
37
35
### Parameters
38
36
39
-
*`user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
40
37
*`cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
41
38
*`per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
42
39
*`sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[has_registrations]=desc`). Valid fields are `has_registrations`.
@@ -110,7 +103,6 @@ var InboxRecipient = /*#__PURE__*/(0, _createClass2.default)(function InboxRecip
110
103
this.options=_objectSpread({},options);
111
104
});
112
105
// Parameters:
113
-
// user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
114
106
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
115
107
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
116
108
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[has_registrations]=desc`). Valid fields are `has_registrations`.
@@ -133,38 +125,32 @@ var InboxRecipient = /*#__PURE__*/(0, _createClass2.default)(function InboxRecip
Copy file name to clipboardExpand all lines: src/models/InboxRecipient.js
-17
Original file line number
Diff line number
Diff line change
@@ -58,13 +58,6 @@ class InboxRecipient {
58
58
this.attributes.sent_at=value
59
59
}
60
60
61
-
// int64 # User ID. Provide a value of `0` to operate the current session's user.
62
-
getUserId=()=>this.attributes.user_id
63
-
64
-
setUserId=value=>{
65
-
this.attributes.user_id=value
66
-
}
67
-
68
61
// int64 # Inbox to share.
69
62
getInboxId=()=>this.attributes.inbox_id
70
63
@@ -91,7 +84,6 @@ class InboxRecipient {
91
84
}
92
85
93
86
// Parameters:
94
-
// user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
95
87
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
96
88
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
97
89
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[has_registrations]=desc`). Valid fields are `has_registrations`.
0 commit comments