pipedrive 18.1.3 → 18.1.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/model/AddUserRequest.js +0 -10
- package/package.json +1 -1
@@ -64,10 +64,6 @@ var AddUserRequest = /*#__PURE__*/function () {
|
|
64
64
|
obj['email'] = _ApiClient["default"].convertToType(data['email'], 'String');
|
65
65
|
delete data['email'];
|
66
66
|
}
|
67
|
-
if (data.hasOwnProperty('name')) {
|
68
|
-
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
69
|
-
delete data['name'];
|
70
|
-
}
|
71
67
|
if (data.hasOwnProperty('access')) {
|
72
68
|
obj['access'] = _ApiClient["default"].convertToType(data['access'], [_UserAccess["default"]]);
|
73
69
|
delete data['access'];
|
@@ -91,12 +87,6 @@ var AddUserRequest = /*#__PURE__*/function () {
|
|
91
87
|
*/
|
92
88
|
AddUserRequest.prototype['email'] = undefined;
|
93
89
|
|
94
|
-
/**
|
95
|
-
* The name of the user
|
96
|
-
* @member {String} name
|
97
|
-
*/
|
98
|
-
AddUserRequest.prototype['name'] = undefined;
|
99
|
-
|
100
90
|
/**
|
101
91
|
* The access given to the user. Each item in the array represents access to a specific app. Optionally may include either admin flag or permission set ID to specify which access to give within the app. If both are omitted, the default access for the corresponding app will be used. It requires structure as follows: `[{ app: 'sales', permission_set_id: '62cc4d7f-4038-4352-abf3-a8c1c822b631' }, { app: 'global', admin: true }, { app: 'account_settings' }]`
|
102
92
|
* @member {Array.<module:model/UserAccess>} access
|