docusign_esign.models.group
Docusign eSignature REST API
The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501
OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git
1# coding: utf-8 2 3""" 4 Docusign eSignature REST API 5 6 The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501 7 8 OpenAPI spec version: v2.1 9 Contact: devcenter@docusign.com 10 Generated by: https://github.com/swagger-api/swagger-codegen.git 11""" 12 13 14import pprint 15import re # noqa: F401 16 17import six 18 19from docusign_esign.client.configuration import Configuration 20 21 22class Group(object): 23 """NOTE: This class is auto generated by the swagger code generator program. 24 25 Do not edit the class manually. 26 """ 27 28 """ 29 Attributes: 30 swagger_types (dict): The key is attribute name 31 and the value is attribute type. 32 attribute_map (dict): The key is attribute name 33 and the value is json key in definition. 34 """ 35 swagger_types = { 36 'access_type': 'str', 37 'ds_group_id': 'str', 38 'error_details': 'ErrorDetails', 39 'group_id': 'str', 40 'group_name': 'str', 41 'group_type': 'str', 42 'is_managed_by_scim': 'bool', 43 'last_modified_on': 'str', 44 'permission_profile_id': 'str', 45 'user_group_type': 'str', 46 'users': 'list[UserInfo]', 47 'users_count': 'str' 48 } 49 50 attribute_map = { 51 'access_type': 'accessType', 52 'ds_group_id': 'dsGroupId', 53 'error_details': 'errorDetails', 54 'group_id': 'groupId', 55 'group_name': 'groupName', 56 'group_type': 'groupType', 57 'is_managed_by_scim': 'isManagedByScim', 58 'last_modified_on': 'lastModifiedOn', 59 'permission_profile_id': 'permissionProfileId', 60 'user_group_type': 'userGroupType', 61 'users': 'users', 62 'users_count': 'usersCount' 63 } 64 65 def __init__(self, _configuration=None, **kwargs): # noqa: E501 66 """Group - a model defined in Swagger""" # noqa: E501 67 if _configuration is None: 68 _configuration = Configuration() 69 self._configuration = _configuration 70 71 self._access_type = None 72 self._ds_group_id = None 73 self._error_details = None 74 self._group_id = None 75 self._group_name = None 76 self._group_type = None 77 self._is_managed_by_scim = None 78 self._last_modified_on = None 79 self._permission_profile_id = None 80 self._user_group_type = None 81 self._users = None 82 self._users_count = None 83 self.discriminator = None 84 85 setattr(self, "_{}".format('access_type'), kwargs.get('access_type', None)) 86 setattr(self, "_{}".format('ds_group_id'), kwargs.get('ds_group_id', None)) 87 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 88 setattr(self, "_{}".format('group_id'), kwargs.get('group_id', None)) 89 setattr(self, "_{}".format('group_name'), kwargs.get('group_name', None)) 90 setattr(self, "_{}".format('group_type'), kwargs.get('group_type', None)) 91 setattr(self, "_{}".format('is_managed_by_scim'), kwargs.get('is_managed_by_scim', None)) 92 setattr(self, "_{}".format('last_modified_on'), kwargs.get('last_modified_on', None)) 93 setattr(self, "_{}".format('permission_profile_id'), kwargs.get('permission_profile_id', None)) 94 setattr(self, "_{}".format('user_group_type'), kwargs.get('user_group_type', None)) 95 setattr(self, "_{}".format('users'), kwargs.get('users', None)) 96 setattr(self, "_{}".format('users_count'), kwargs.get('users_count', None)) 97 98 @property 99 def access_type(self): 100 """Gets the access_type of this Group. # noqa: E501 101 102 # noqa: E501 103 104 :return: The access_type of this Group. # noqa: E501 105 :rtype: str 106 """ 107 return self._access_type 108 109 @access_type.setter 110 def access_type(self, access_type): 111 """Sets the access_type of this Group. 112 113 # noqa: E501 114 115 :param access_type: The access_type of this Group. # noqa: E501 116 :type: str 117 """ 118 119 self._access_type = access_type 120 121 @property 122 def ds_group_id(self): 123 """Gets the ds_group_id of this Group. # noqa: E501 124 125 # noqa: E501 126 127 :return: The ds_group_id of this Group. # noqa: E501 128 :rtype: str 129 """ 130 return self._ds_group_id 131 132 @ds_group_id.setter 133 def ds_group_id(self, ds_group_id): 134 """Sets the ds_group_id of this Group. 135 136 # noqa: E501 137 138 :param ds_group_id: The ds_group_id of this Group. # noqa: E501 139 :type: str 140 """ 141 142 self._ds_group_id = ds_group_id 143 144 @property 145 def error_details(self): 146 """Gets the error_details of this Group. # noqa: E501 147 148 Array or errors. # noqa: E501 149 150 :return: The error_details of this Group. # noqa: E501 151 :rtype: ErrorDetails 152 """ 153 return self._error_details 154 155 @error_details.setter 156 def error_details(self, error_details): 157 """Sets the error_details of this Group. 158 159 Array or errors. # noqa: E501 160 161 :param error_details: The error_details of this Group. # noqa: E501 162 :type: ErrorDetails 163 """ 164 165 self._error_details = error_details 166 167 @property 168 def group_id(self): 169 """Gets the group_id of this Group. # noqa: E501 170 171 The DocuSign group ID for the group. # noqa: E501 172 173 :return: The group_id of this Group. # noqa: E501 174 :rtype: str 175 """ 176 return self._group_id 177 178 @group_id.setter 179 def group_id(self, group_id): 180 """Sets the group_id of this Group. 181 182 The DocuSign group ID for the group. # noqa: E501 183 184 :param group_id: The group_id of this Group. # noqa: E501 185 :type: str 186 """ 187 188 self._group_id = group_id 189 190 @property 191 def group_name(self): 192 """Gets the group_name of this Group. # noqa: E501 193 194 The name of the group. # noqa: E501 195 196 :return: The group_name of this Group. # noqa: E501 197 :rtype: str 198 """ 199 return self._group_name 200 201 @group_name.setter 202 def group_name(self, group_name): 203 """Sets the group_name of this Group. 204 205 The name of the group. # noqa: E501 206 207 :param group_name: The group_name of this Group. # noqa: E501 208 :type: str 209 """ 210 211 self._group_name = group_name 212 213 @property 214 def group_type(self): 215 """Gets the group_type of this Group. # noqa: E501 216 217 The group type. # noqa: E501 218 219 :return: The group_type of this Group. # noqa: E501 220 :rtype: str 221 """ 222 return self._group_type 223 224 @group_type.setter 225 def group_type(self, group_type): 226 """Sets the group_type of this Group. 227 228 The group type. # noqa: E501 229 230 :param group_type: The group_type of this Group. # noqa: E501 231 :type: str 232 """ 233 234 self._group_type = group_type 235 236 @property 237 def is_managed_by_scim(self): 238 """Gets the is_managed_by_scim of this Group. # noqa: E501 239 240 # noqa: E501 241 242 :return: The is_managed_by_scim of this Group. # noqa: E501 243 :rtype: bool 244 """ 245 return self._is_managed_by_scim 246 247 @is_managed_by_scim.setter 248 def is_managed_by_scim(self, is_managed_by_scim): 249 """Sets the is_managed_by_scim of this Group. 250 251 # noqa: E501 252 253 :param is_managed_by_scim: The is_managed_by_scim of this Group. # noqa: E501 254 :type: bool 255 """ 256 257 self._is_managed_by_scim = is_managed_by_scim 258 259 @property 260 def last_modified_on(self): 261 """Gets the last_modified_on of this Group. # noqa: E501 262 263 # noqa: E501 264 265 :return: The last_modified_on of this Group. # noqa: E501 266 :rtype: str 267 """ 268 return self._last_modified_on 269 270 @last_modified_on.setter 271 def last_modified_on(self, last_modified_on): 272 """Sets the last_modified_on of this Group. 273 274 # noqa: E501 275 276 :param last_modified_on: The last_modified_on of this Group. # noqa: E501 277 :type: str 278 """ 279 280 self._last_modified_on = last_modified_on 281 282 @property 283 def permission_profile_id(self): 284 """Gets the permission_profile_id of this Group. # noqa: E501 285 286 The ID of the permission profile associated with the group. # noqa: E501 287 288 :return: The permission_profile_id of this Group. # noqa: E501 289 :rtype: str 290 """ 291 return self._permission_profile_id 292 293 @permission_profile_id.setter 294 def permission_profile_id(self, permission_profile_id): 295 """Sets the permission_profile_id of this Group. 296 297 The ID of the permission profile associated with the group. # noqa: E501 298 299 :param permission_profile_id: The permission_profile_id of this Group. # noqa: E501 300 :type: str 301 """ 302 303 self._permission_profile_id = permission_profile_id 304 305 @property 306 def user_group_type(self): 307 """Gets the user_group_type of this Group. # noqa: E501 308 309 # noqa: E501 310 311 :return: The user_group_type of this Group. # noqa: E501 312 :rtype: str 313 """ 314 return self._user_group_type 315 316 @user_group_type.setter 317 def user_group_type(self, user_group_type): 318 """Sets the user_group_type of this Group. 319 320 # noqa: E501 321 322 :param user_group_type: The user_group_type of this Group. # noqa: E501 323 :type: str 324 """ 325 326 self._user_group_type = user_group_type 327 328 @property 329 def users(self): 330 """Gets the users of this Group. # noqa: E501 331 332 # noqa: E501 333 334 :return: The users of this Group. # noqa: E501 335 :rtype: list[UserInfo] 336 """ 337 return self._users 338 339 @users.setter 340 def users(self, users): 341 """Sets the users of this Group. 342 343 # noqa: E501 344 345 :param users: The users of this Group. # noqa: E501 346 :type: list[UserInfo] 347 """ 348 349 self._users = users 350 351 @property 352 def users_count(self): 353 """Gets the users_count of this Group. # noqa: E501 354 355 # noqa: E501 356 357 :return: The users_count of this Group. # noqa: E501 358 :rtype: str 359 """ 360 return self._users_count 361 362 @users_count.setter 363 def users_count(self, users_count): 364 """Sets the users_count of this Group. 365 366 # noqa: E501 367 368 :param users_count: The users_count of this Group. # noqa: E501 369 :type: str 370 """ 371 372 self._users_count = users_count 373 374 def to_dict(self): 375 """Returns the model properties as a dict""" 376 result = {} 377 378 for attr, _ in six.iteritems(self.swagger_types): 379 value = getattr(self, attr) 380 if isinstance(value, list): 381 result[attr] = list(map( 382 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 383 value 384 )) 385 elif hasattr(value, "to_dict"): 386 result[attr] = value.to_dict() 387 elif isinstance(value, dict): 388 result[attr] = dict(map( 389 lambda item: (item[0], item[1].to_dict()) 390 if hasattr(item[1], "to_dict") else item, 391 value.items() 392 )) 393 else: 394 result[attr] = value 395 if issubclass(Group, dict): 396 for key, value in self.items(): 397 result[key] = value 398 399 return result 400 401 def to_str(self): 402 """Returns the string representation of the model""" 403 return pprint.pformat(self.to_dict()) 404 405 def __repr__(self): 406 """For `print` and `pprint`""" 407 return self.to_str() 408 409 def __eq__(self, other): 410 """Returns true if both objects are equal""" 411 if not isinstance(other, Group): 412 return False 413 414 return self.to_dict() == other.to_dict() 415 416 def __ne__(self, other): 417 """Returns true if both objects are not equal""" 418 if not isinstance(other, Group): 419 return True 420 421 return self.to_dict() != other.to_dict()
23class Group(object): 24 """NOTE: This class is auto generated by the swagger code generator program. 25 26 Do not edit the class manually. 27 """ 28 29 """ 30 Attributes: 31 swagger_types (dict): The key is attribute name 32 and the value is attribute type. 33 attribute_map (dict): The key is attribute name 34 and the value is json key in definition. 35 """ 36 swagger_types = { 37 'access_type': 'str', 38 'ds_group_id': 'str', 39 'error_details': 'ErrorDetails', 40 'group_id': 'str', 41 'group_name': 'str', 42 'group_type': 'str', 43 'is_managed_by_scim': 'bool', 44 'last_modified_on': 'str', 45 'permission_profile_id': 'str', 46 'user_group_type': 'str', 47 'users': 'list[UserInfo]', 48 'users_count': 'str' 49 } 50 51 attribute_map = { 52 'access_type': 'accessType', 53 'ds_group_id': 'dsGroupId', 54 'error_details': 'errorDetails', 55 'group_id': 'groupId', 56 'group_name': 'groupName', 57 'group_type': 'groupType', 58 'is_managed_by_scim': 'isManagedByScim', 59 'last_modified_on': 'lastModifiedOn', 60 'permission_profile_id': 'permissionProfileId', 61 'user_group_type': 'userGroupType', 62 'users': 'users', 63 'users_count': 'usersCount' 64 } 65 66 def __init__(self, _configuration=None, **kwargs): # noqa: E501 67 """Group - a model defined in Swagger""" # noqa: E501 68 if _configuration is None: 69 _configuration = Configuration() 70 self._configuration = _configuration 71 72 self._access_type = None 73 self._ds_group_id = None 74 self._error_details = None 75 self._group_id = None 76 self._group_name = None 77 self._group_type = None 78 self._is_managed_by_scim = None 79 self._last_modified_on = None 80 self._permission_profile_id = None 81 self._user_group_type = None 82 self._users = None 83 self._users_count = None 84 self.discriminator = None 85 86 setattr(self, "_{}".format('access_type'), kwargs.get('access_type', None)) 87 setattr(self, "_{}".format('ds_group_id'), kwargs.get('ds_group_id', None)) 88 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 89 setattr(self, "_{}".format('group_id'), kwargs.get('group_id', None)) 90 setattr(self, "_{}".format('group_name'), kwargs.get('group_name', None)) 91 setattr(self, "_{}".format('group_type'), kwargs.get('group_type', None)) 92 setattr(self, "_{}".format('is_managed_by_scim'), kwargs.get('is_managed_by_scim', None)) 93 setattr(self, "_{}".format('last_modified_on'), kwargs.get('last_modified_on', None)) 94 setattr(self, "_{}".format('permission_profile_id'), kwargs.get('permission_profile_id', None)) 95 setattr(self, "_{}".format('user_group_type'), kwargs.get('user_group_type', None)) 96 setattr(self, "_{}".format('users'), kwargs.get('users', None)) 97 setattr(self, "_{}".format('users_count'), kwargs.get('users_count', None)) 98 99 @property 100 def access_type(self): 101 """Gets the access_type of this Group. # noqa: E501 102 103 # noqa: E501 104 105 :return: The access_type of this Group. # noqa: E501 106 :rtype: str 107 """ 108 return self._access_type 109 110 @access_type.setter 111 def access_type(self, access_type): 112 """Sets the access_type of this Group. 113 114 # noqa: E501 115 116 :param access_type: The access_type of this Group. # noqa: E501 117 :type: str 118 """ 119 120 self._access_type = access_type 121 122 @property 123 def ds_group_id(self): 124 """Gets the ds_group_id of this Group. # noqa: E501 125 126 # noqa: E501 127 128 :return: The ds_group_id of this Group. # noqa: E501 129 :rtype: str 130 """ 131 return self._ds_group_id 132 133 @ds_group_id.setter 134 def ds_group_id(self, ds_group_id): 135 """Sets the ds_group_id of this Group. 136 137 # noqa: E501 138 139 :param ds_group_id: The ds_group_id of this Group. # noqa: E501 140 :type: str 141 """ 142 143 self._ds_group_id = ds_group_id 144 145 @property 146 def error_details(self): 147 """Gets the error_details of this Group. # noqa: E501 148 149 Array or errors. # noqa: E501 150 151 :return: The error_details of this Group. # noqa: E501 152 :rtype: ErrorDetails 153 """ 154 return self._error_details 155 156 @error_details.setter 157 def error_details(self, error_details): 158 """Sets the error_details of this Group. 159 160 Array or errors. # noqa: E501 161 162 :param error_details: The error_details of this Group. # noqa: E501 163 :type: ErrorDetails 164 """ 165 166 self._error_details = error_details 167 168 @property 169 def group_id(self): 170 """Gets the group_id of this Group. # noqa: E501 171 172 The DocuSign group ID for the group. # noqa: E501 173 174 :return: The group_id of this Group. # noqa: E501 175 :rtype: str 176 """ 177 return self._group_id 178 179 @group_id.setter 180 def group_id(self, group_id): 181 """Sets the group_id of this Group. 182 183 The DocuSign group ID for the group. # noqa: E501 184 185 :param group_id: The group_id of this Group. # noqa: E501 186 :type: str 187 """ 188 189 self._group_id = group_id 190 191 @property 192 def group_name(self): 193 """Gets the group_name of this Group. # noqa: E501 194 195 The name of the group. # noqa: E501 196 197 :return: The group_name of this Group. # noqa: E501 198 :rtype: str 199 """ 200 return self._group_name 201 202 @group_name.setter 203 def group_name(self, group_name): 204 """Sets the group_name of this Group. 205 206 The name of the group. # noqa: E501 207 208 :param group_name: The group_name of this Group. # noqa: E501 209 :type: str 210 """ 211 212 self._group_name = group_name 213 214 @property 215 def group_type(self): 216 """Gets the group_type of this Group. # noqa: E501 217 218 The group type. # noqa: E501 219 220 :return: The group_type of this Group. # noqa: E501 221 :rtype: str 222 """ 223 return self._group_type 224 225 @group_type.setter 226 def group_type(self, group_type): 227 """Sets the group_type of this Group. 228 229 The group type. # noqa: E501 230 231 :param group_type: The group_type of this Group. # noqa: E501 232 :type: str 233 """ 234 235 self._group_type = group_type 236 237 @property 238 def is_managed_by_scim(self): 239 """Gets the is_managed_by_scim of this Group. # noqa: E501 240 241 # noqa: E501 242 243 :return: The is_managed_by_scim of this Group. # noqa: E501 244 :rtype: bool 245 """ 246 return self._is_managed_by_scim 247 248 @is_managed_by_scim.setter 249 def is_managed_by_scim(self, is_managed_by_scim): 250 """Sets the is_managed_by_scim of this Group. 251 252 # noqa: E501 253 254 :param is_managed_by_scim: The is_managed_by_scim of this Group. # noqa: E501 255 :type: bool 256 """ 257 258 self._is_managed_by_scim = is_managed_by_scim 259 260 @property 261 def last_modified_on(self): 262 """Gets the last_modified_on of this Group. # noqa: E501 263 264 # noqa: E501 265 266 :return: The last_modified_on of this Group. # noqa: E501 267 :rtype: str 268 """ 269 return self._last_modified_on 270 271 @last_modified_on.setter 272 def last_modified_on(self, last_modified_on): 273 """Sets the last_modified_on of this Group. 274 275 # noqa: E501 276 277 :param last_modified_on: The last_modified_on of this Group. # noqa: E501 278 :type: str 279 """ 280 281 self._last_modified_on = last_modified_on 282 283 @property 284 def permission_profile_id(self): 285 """Gets the permission_profile_id of this Group. # noqa: E501 286 287 The ID of the permission profile associated with the group. # noqa: E501 288 289 :return: The permission_profile_id of this Group. # noqa: E501 290 :rtype: str 291 """ 292 return self._permission_profile_id 293 294 @permission_profile_id.setter 295 def permission_profile_id(self, permission_profile_id): 296 """Sets the permission_profile_id of this Group. 297 298 The ID of the permission profile associated with the group. # noqa: E501 299 300 :param permission_profile_id: The permission_profile_id of this Group. # noqa: E501 301 :type: str 302 """ 303 304 self._permission_profile_id = permission_profile_id 305 306 @property 307 def user_group_type(self): 308 """Gets the user_group_type of this Group. # noqa: E501 309 310 # noqa: E501 311 312 :return: The user_group_type of this Group. # noqa: E501 313 :rtype: str 314 """ 315 return self._user_group_type 316 317 @user_group_type.setter 318 def user_group_type(self, user_group_type): 319 """Sets the user_group_type of this Group. 320 321 # noqa: E501 322 323 :param user_group_type: The user_group_type of this Group. # noqa: E501 324 :type: str 325 """ 326 327 self._user_group_type = user_group_type 328 329 @property 330 def users(self): 331 """Gets the users of this Group. # noqa: E501 332 333 # noqa: E501 334 335 :return: The users of this Group. # noqa: E501 336 :rtype: list[UserInfo] 337 """ 338 return self._users 339 340 @users.setter 341 def users(self, users): 342 """Sets the users of this Group. 343 344 # noqa: E501 345 346 :param users: The users of this Group. # noqa: E501 347 :type: list[UserInfo] 348 """ 349 350 self._users = users 351 352 @property 353 def users_count(self): 354 """Gets the users_count of this Group. # noqa: E501 355 356 # noqa: E501 357 358 :return: The users_count of this Group. # noqa: E501 359 :rtype: str 360 """ 361 return self._users_count 362 363 @users_count.setter 364 def users_count(self, users_count): 365 """Sets the users_count of this Group. 366 367 # noqa: E501 368 369 :param users_count: The users_count of this Group. # noqa: E501 370 :type: str 371 """ 372 373 self._users_count = users_count 374 375 def to_dict(self): 376 """Returns the model properties as a dict""" 377 result = {} 378 379 for attr, _ in six.iteritems(self.swagger_types): 380 value = getattr(self, attr) 381 if isinstance(value, list): 382 result[attr] = list(map( 383 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 384 value 385 )) 386 elif hasattr(value, "to_dict"): 387 result[attr] = value.to_dict() 388 elif isinstance(value, dict): 389 result[attr] = dict(map( 390 lambda item: (item[0], item[1].to_dict()) 391 if hasattr(item[1], "to_dict") else item, 392 value.items() 393 )) 394 else: 395 result[attr] = value 396 if issubclass(Group, dict): 397 for key, value in self.items(): 398 result[key] = value 399 400 return result 401 402 def to_str(self): 403 """Returns the string representation of the model""" 404 return pprint.pformat(self.to_dict()) 405 406 def __repr__(self): 407 """For `print` and `pprint`""" 408 return self.to_str() 409 410 def __eq__(self, other): 411 """Returns true if both objects are equal""" 412 if not isinstance(other, Group): 413 return False 414 415 return self.to_dict() == other.to_dict() 416 417 def __ne__(self, other): 418 """Returns true if both objects are not equal""" 419 if not isinstance(other, Group): 420 return True 421 422 return self.to_dict() != other.to_dict()
NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
66 def __init__(self, _configuration=None, **kwargs): # noqa: E501 67 """Group - a model defined in Swagger""" # noqa: E501 68 if _configuration is None: 69 _configuration = Configuration() 70 self._configuration = _configuration 71 72 self._access_type = None 73 self._ds_group_id = None 74 self._error_details = None 75 self._group_id = None 76 self._group_name = None 77 self._group_type = None 78 self._is_managed_by_scim = None 79 self._last_modified_on = None 80 self._permission_profile_id = None 81 self._user_group_type = None 82 self._users = None 83 self._users_count = None 84 self.discriminator = None 85 86 setattr(self, "_{}".format('access_type'), kwargs.get('access_type', None)) 87 setattr(self, "_{}".format('ds_group_id'), kwargs.get('ds_group_id', None)) 88 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 89 setattr(self, "_{}".format('group_id'), kwargs.get('group_id', None)) 90 setattr(self, "_{}".format('group_name'), kwargs.get('group_name', None)) 91 setattr(self, "_{}".format('group_type'), kwargs.get('group_type', None)) 92 setattr(self, "_{}".format('is_managed_by_scim'), kwargs.get('is_managed_by_scim', None)) 93 setattr(self, "_{}".format('last_modified_on'), kwargs.get('last_modified_on', None)) 94 setattr(self, "_{}".format('permission_profile_id'), kwargs.get('permission_profile_id', None)) 95 setattr(self, "_{}".format('user_group_type'), kwargs.get('user_group_type', None)) 96 setattr(self, "_{}".format('users'), kwargs.get('users', None)) 97 setattr(self, "_{}".format('users_count'), kwargs.get('users_count', None))
Group - a model defined in Swagger
Gets the access_type of this Group. # noqa: E501
# noqa: E501
Returns
The access_type of this Group. # noqa: E501
Gets the ds_group_id of this Group. # noqa: E501
# noqa: E501
Returns
The ds_group_id of this Group. # noqa: E501
Gets the error_details of this Group. # noqa: E501
Array or errors. # noqa: E501
Returns
The error_details of this Group. # noqa: E501
Gets the group_id of this Group. # noqa: E501
The DocuSign group ID for the group. # noqa: E501
Returns
The group_id of this Group. # noqa: E501
Gets the group_name of this Group. # noqa: E501
The name of the group. # noqa: E501
Returns
The group_name of this Group. # noqa: E501
Gets the group_type of this Group. # noqa: E501
The group type. # noqa: E501
Returns
The group_type of this Group. # noqa: E501
Gets the is_managed_by_scim of this Group. # noqa: E501
# noqa: E501
Returns
The is_managed_by_scim of this Group. # noqa: E501
Gets the last_modified_on of this Group. # noqa: E501
# noqa: E501
Returns
The last_modified_on of this Group. # noqa: E501
Gets the permission_profile_id of this Group. # noqa: E501
The ID of the permission profile associated with the group. # noqa: E501
Returns
The permission_profile_id of this Group. # noqa: E501
Gets the user_group_type of this Group. # noqa: E501
# noqa: E501
Returns
The user_group_type of this Group. # noqa: E501
Gets the users of this Group. # noqa: E501
# noqa: E501
Returns
The users of this Group. # noqa: E501
Gets the users_count of this Group. # noqa: E501
# noqa: E501
Returns
The users_count of this Group. # noqa: E501
375 def to_dict(self): 376 """Returns the model properties as a dict""" 377 result = {} 378 379 for attr, _ in six.iteritems(self.swagger_types): 380 value = getattr(self, attr) 381 if isinstance(value, list): 382 result[attr] = list(map( 383 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 384 value 385 )) 386 elif hasattr(value, "to_dict"): 387 result[attr] = value.to_dict() 388 elif isinstance(value, dict): 389 result[attr] = dict(map( 390 lambda item: (item[0], item[1].to_dict()) 391 if hasattr(item[1], "to_dict") else item, 392 value.items() 393 )) 394 else: 395 result[attr] = value 396 if issubclass(Group, dict): 397 for key, value in self.items(): 398 result[key] = value 399 400 return result
Returns the model properties as a dict