docusign_esign.models.extension_data
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 ExtensionData(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 'action_contract': 'str', 37 'action_input_key': 'str', 38 'action_name': 'str', 39 'application_id': 'str', 40 'application_name': 'str', 41 'connected_fields_data': 'ConnectedData', 42 'connection_instances': 'list[ConnectionInstance]', 43 'extension_contract': 'str', 44 'extension_group_id': 'str', 45 'extension_name': 'str', 46 'extension_policy': 'str', 47 'publisher_name': 'str', 48 'required_for_extension': 'str' 49 } 50 51 attribute_map = { 52 'action_contract': 'actionContract', 53 'action_input_key': 'actionInputKey', 54 'action_name': 'actionName', 55 'application_id': 'applicationId', 56 'application_name': 'applicationName', 57 'connected_fields_data': 'connectedFieldsData', 58 'connection_instances': 'connectionInstances', 59 'extension_contract': 'extensionContract', 60 'extension_group_id': 'extensionGroupId', 61 'extension_name': 'extensionName', 62 'extension_policy': 'extensionPolicy', 63 'publisher_name': 'publisherName', 64 'required_for_extension': 'requiredForExtension' 65 } 66 67 def __init__(self, _configuration=None, **kwargs): # noqa: E501 68 """ExtensionData - a model defined in Swagger""" # noqa: E501 69 if _configuration is None: 70 _configuration = Configuration() 71 self._configuration = _configuration 72 73 self._action_contract = None 74 self._action_input_key = None 75 self._action_name = None 76 self._application_id = None 77 self._application_name = None 78 self._connected_fields_data = None 79 self._connection_instances = None 80 self._extension_contract = None 81 self._extension_group_id = None 82 self._extension_name = None 83 self._extension_policy = None 84 self._publisher_name = None 85 self._required_for_extension = None 86 self.discriminator = None 87 88 setattr(self, "_{}".format('action_contract'), kwargs.get('action_contract', None)) 89 setattr(self, "_{}".format('action_input_key'), kwargs.get('action_input_key', None)) 90 setattr(self, "_{}".format('action_name'), kwargs.get('action_name', None)) 91 setattr(self, "_{}".format('application_id'), kwargs.get('application_id', None)) 92 setattr(self, "_{}".format('application_name'), kwargs.get('application_name', None)) 93 setattr(self, "_{}".format('connected_fields_data'), kwargs.get('connected_fields_data', None)) 94 setattr(self, "_{}".format('connection_instances'), kwargs.get('connection_instances', None)) 95 setattr(self, "_{}".format('extension_contract'), kwargs.get('extension_contract', None)) 96 setattr(self, "_{}".format('extension_group_id'), kwargs.get('extension_group_id', None)) 97 setattr(self, "_{}".format('extension_name'), kwargs.get('extension_name', None)) 98 setattr(self, "_{}".format('extension_policy'), kwargs.get('extension_policy', None)) 99 setattr(self, "_{}".format('publisher_name'), kwargs.get('publisher_name', None)) 100 setattr(self, "_{}".format('required_for_extension'), kwargs.get('required_for_extension', None)) 101 102 @property 103 def action_contract(self): 104 """Gets the action_contract of this ExtensionData. # noqa: E501 105 106 # noqa: E501 107 108 :return: The action_contract of this ExtensionData. # noqa: E501 109 :rtype: str 110 """ 111 return self._action_contract 112 113 @action_contract.setter 114 def action_contract(self, action_contract): 115 """Sets the action_contract of this ExtensionData. 116 117 # noqa: E501 118 119 :param action_contract: The action_contract of this ExtensionData. # noqa: E501 120 :type: str 121 """ 122 123 self._action_contract = action_contract 124 125 @property 126 def action_input_key(self): 127 """Gets the action_input_key of this ExtensionData. # noqa: E501 128 129 # noqa: E501 130 131 :return: The action_input_key of this ExtensionData. # noqa: E501 132 :rtype: str 133 """ 134 return self._action_input_key 135 136 @action_input_key.setter 137 def action_input_key(self, action_input_key): 138 """Sets the action_input_key of this ExtensionData. 139 140 # noqa: E501 141 142 :param action_input_key: The action_input_key of this ExtensionData. # noqa: E501 143 :type: str 144 """ 145 146 self._action_input_key = action_input_key 147 148 @property 149 def action_name(self): 150 """Gets the action_name of this ExtensionData. # noqa: E501 151 152 # noqa: E501 153 154 :return: The action_name of this ExtensionData. # noqa: E501 155 :rtype: str 156 """ 157 return self._action_name 158 159 @action_name.setter 160 def action_name(self, action_name): 161 """Sets the action_name of this ExtensionData. 162 163 # noqa: E501 164 165 :param action_name: The action_name of this ExtensionData. # noqa: E501 166 :type: str 167 """ 168 169 self._action_name = action_name 170 171 @property 172 def application_id(self): 173 """Gets the application_id of this ExtensionData. # noqa: E501 174 175 # noqa: E501 176 177 :return: The application_id of this ExtensionData. # noqa: E501 178 :rtype: str 179 """ 180 return self._application_id 181 182 @application_id.setter 183 def application_id(self, application_id): 184 """Sets the application_id of this ExtensionData. 185 186 # noqa: E501 187 188 :param application_id: The application_id of this ExtensionData. # noqa: E501 189 :type: str 190 """ 191 192 self._application_id = application_id 193 194 @property 195 def application_name(self): 196 """Gets the application_name of this ExtensionData. # noqa: E501 197 198 # noqa: E501 199 200 :return: The application_name of this ExtensionData. # noqa: E501 201 :rtype: str 202 """ 203 return self._application_name 204 205 @application_name.setter 206 def application_name(self, application_name): 207 """Sets the application_name of this ExtensionData. 208 209 # noqa: E501 210 211 :param application_name: The application_name of this ExtensionData. # noqa: E501 212 :type: str 213 """ 214 215 self._application_name = application_name 216 217 @property 218 def connected_fields_data(self): 219 """Gets the connected_fields_data of this ExtensionData. # noqa: E501 220 221 # noqa: E501 222 223 :return: The connected_fields_data of this ExtensionData. # noqa: E501 224 :rtype: ConnectedData 225 """ 226 return self._connected_fields_data 227 228 @connected_fields_data.setter 229 def connected_fields_data(self, connected_fields_data): 230 """Sets the connected_fields_data of this ExtensionData. 231 232 # noqa: E501 233 234 :param connected_fields_data: The connected_fields_data of this ExtensionData. # noqa: E501 235 :type: ConnectedData 236 """ 237 238 self._connected_fields_data = connected_fields_data 239 240 @property 241 def connection_instances(self): 242 """Gets the connection_instances of this ExtensionData. # noqa: E501 243 244 # noqa: E501 245 246 :return: The connection_instances of this ExtensionData. # noqa: E501 247 :rtype: list[ConnectionInstance] 248 """ 249 return self._connection_instances 250 251 @connection_instances.setter 252 def connection_instances(self, connection_instances): 253 """Sets the connection_instances of this ExtensionData. 254 255 # noqa: E501 256 257 :param connection_instances: The connection_instances of this ExtensionData. # noqa: E501 258 :type: list[ConnectionInstance] 259 """ 260 261 self._connection_instances = connection_instances 262 263 @property 264 def extension_contract(self): 265 """Gets the extension_contract of this ExtensionData. # noqa: E501 266 267 # noqa: E501 268 269 :return: The extension_contract of this ExtensionData. # noqa: E501 270 :rtype: str 271 """ 272 return self._extension_contract 273 274 @extension_contract.setter 275 def extension_contract(self, extension_contract): 276 """Sets the extension_contract of this ExtensionData. 277 278 # noqa: E501 279 280 :param extension_contract: The extension_contract of this ExtensionData. # noqa: E501 281 :type: str 282 """ 283 284 self._extension_contract = extension_contract 285 286 @property 287 def extension_group_id(self): 288 """Gets the extension_group_id of this ExtensionData. # noqa: E501 289 290 # noqa: E501 291 292 :return: The extension_group_id of this ExtensionData. # noqa: E501 293 :rtype: str 294 """ 295 return self._extension_group_id 296 297 @extension_group_id.setter 298 def extension_group_id(self, extension_group_id): 299 """Sets the extension_group_id of this ExtensionData. 300 301 # noqa: E501 302 303 :param extension_group_id: The extension_group_id of this ExtensionData. # noqa: E501 304 :type: str 305 """ 306 307 self._extension_group_id = extension_group_id 308 309 @property 310 def extension_name(self): 311 """Gets the extension_name of this ExtensionData. # noqa: E501 312 313 # noqa: E501 314 315 :return: The extension_name of this ExtensionData. # noqa: E501 316 :rtype: str 317 """ 318 return self._extension_name 319 320 @extension_name.setter 321 def extension_name(self, extension_name): 322 """Sets the extension_name of this ExtensionData. 323 324 # noqa: E501 325 326 :param extension_name: The extension_name of this ExtensionData. # noqa: E501 327 :type: str 328 """ 329 330 self._extension_name = extension_name 331 332 @property 333 def extension_policy(self): 334 """Gets the extension_policy of this ExtensionData. # noqa: E501 335 336 # noqa: E501 337 338 :return: The extension_policy of this ExtensionData. # noqa: E501 339 :rtype: str 340 """ 341 return self._extension_policy 342 343 @extension_policy.setter 344 def extension_policy(self, extension_policy): 345 """Sets the extension_policy of this ExtensionData. 346 347 # noqa: E501 348 349 :param extension_policy: The extension_policy of this ExtensionData. # noqa: E501 350 :type: str 351 """ 352 353 self._extension_policy = extension_policy 354 355 @property 356 def publisher_name(self): 357 """Gets the publisher_name of this ExtensionData. # noqa: E501 358 359 # noqa: E501 360 361 :return: The publisher_name of this ExtensionData. # noqa: E501 362 :rtype: str 363 """ 364 return self._publisher_name 365 366 @publisher_name.setter 367 def publisher_name(self, publisher_name): 368 """Sets the publisher_name of this ExtensionData. 369 370 # noqa: E501 371 372 :param publisher_name: The publisher_name of this ExtensionData. # noqa: E501 373 :type: str 374 """ 375 376 self._publisher_name = publisher_name 377 378 @property 379 def required_for_extension(self): 380 """Gets the required_for_extension of this ExtensionData. # noqa: E501 381 382 # noqa: E501 383 384 :return: The required_for_extension of this ExtensionData. # noqa: E501 385 :rtype: str 386 """ 387 return self._required_for_extension 388 389 @required_for_extension.setter 390 def required_for_extension(self, required_for_extension): 391 """Sets the required_for_extension of this ExtensionData. 392 393 # noqa: E501 394 395 :param required_for_extension: The required_for_extension of this ExtensionData. # noqa: E501 396 :type: str 397 """ 398 399 self._required_for_extension = required_for_extension 400 401 def to_dict(self): 402 """Returns the model properties as a dict""" 403 result = {} 404 405 for attr, _ in six.iteritems(self.swagger_types): 406 value = getattr(self, attr) 407 if isinstance(value, list): 408 result[attr] = list(map( 409 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 410 value 411 )) 412 elif hasattr(value, "to_dict"): 413 result[attr] = value.to_dict() 414 elif isinstance(value, dict): 415 result[attr] = dict(map( 416 lambda item: (item[0], item[1].to_dict()) 417 if hasattr(item[1], "to_dict") else item, 418 value.items() 419 )) 420 else: 421 result[attr] = value 422 if issubclass(ExtensionData, dict): 423 for key, value in self.items(): 424 result[key] = value 425 426 return result 427 428 def to_str(self): 429 """Returns the string representation of the model""" 430 return pprint.pformat(self.to_dict()) 431 432 def __repr__(self): 433 """For `print` and `pprint`""" 434 return self.to_str() 435 436 def __eq__(self, other): 437 """Returns true if both objects are equal""" 438 if not isinstance(other, ExtensionData): 439 return False 440 441 return self.to_dict() == other.to_dict() 442 443 def __ne__(self, other): 444 """Returns true if both objects are not equal""" 445 if not isinstance(other, ExtensionData): 446 return True 447 448 return self.to_dict() != other.to_dict()
23class ExtensionData(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 'action_contract': 'str', 38 'action_input_key': 'str', 39 'action_name': 'str', 40 'application_id': 'str', 41 'application_name': 'str', 42 'connected_fields_data': 'ConnectedData', 43 'connection_instances': 'list[ConnectionInstance]', 44 'extension_contract': 'str', 45 'extension_group_id': 'str', 46 'extension_name': 'str', 47 'extension_policy': 'str', 48 'publisher_name': 'str', 49 'required_for_extension': 'str' 50 } 51 52 attribute_map = { 53 'action_contract': 'actionContract', 54 'action_input_key': 'actionInputKey', 55 'action_name': 'actionName', 56 'application_id': 'applicationId', 57 'application_name': 'applicationName', 58 'connected_fields_data': 'connectedFieldsData', 59 'connection_instances': 'connectionInstances', 60 'extension_contract': 'extensionContract', 61 'extension_group_id': 'extensionGroupId', 62 'extension_name': 'extensionName', 63 'extension_policy': 'extensionPolicy', 64 'publisher_name': 'publisherName', 65 'required_for_extension': 'requiredForExtension' 66 } 67 68 def __init__(self, _configuration=None, **kwargs): # noqa: E501 69 """ExtensionData - a model defined in Swagger""" # noqa: E501 70 if _configuration is None: 71 _configuration = Configuration() 72 self._configuration = _configuration 73 74 self._action_contract = None 75 self._action_input_key = None 76 self._action_name = None 77 self._application_id = None 78 self._application_name = None 79 self._connected_fields_data = None 80 self._connection_instances = None 81 self._extension_contract = None 82 self._extension_group_id = None 83 self._extension_name = None 84 self._extension_policy = None 85 self._publisher_name = None 86 self._required_for_extension = None 87 self.discriminator = None 88 89 setattr(self, "_{}".format('action_contract'), kwargs.get('action_contract', None)) 90 setattr(self, "_{}".format('action_input_key'), kwargs.get('action_input_key', None)) 91 setattr(self, "_{}".format('action_name'), kwargs.get('action_name', None)) 92 setattr(self, "_{}".format('application_id'), kwargs.get('application_id', None)) 93 setattr(self, "_{}".format('application_name'), kwargs.get('application_name', None)) 94 setattr(self, "_{}".format('connected_fields_data'), kwargs.get('connected_fields_data', None)) 95 setattr(self, "_{}".format('connection_instances'), kwargs.get('connection_instances', None)) 96 setattr(self, "_{}".format('extension_contract'), kwargs.get('extension_contract', None)) 97 setattr(self, "_{}".format('extension_group_id'), kwargs.get('extension_group_id', None)) 98 setattr(self, "_{}".format('extension_name'), kwargs.get('extension_name', None)) 99 setattr(self, "_{}".format('extension_policy'), kwargs.get('extension_policy', None)) 100 setattr(self, "_{}".format('publisher_name'), kwargs.get('publisher_name', None)) 101 setattr(self, "_{}".format('required_for_extension'), kwargs.get('required_for_extension', None)) 102 103 @property 104 def action_contract(self): 105 """Gets the action_contract of this ExtensionData. # noqa: E501 106 107 # noqa: E501 108 109 :return: The action_contract of this ExtensionData. # noqa: E501 110 :rtype: str 111 """ 112 return self._action_contract 113 114 @action_contract.setter 115 def action_contract(self, action_contract): 116 """Sets the action_contract of this ExtensionData. 117 118 # noqa: E501 119 120 :param action_contract: The action_contract of this ExtensionData. # noqa: E501 121 :type: str 122 """ 123 124 self._action_contract = action_contract 125 126 @property 127 def action_input_key(self): 128 """Gets the action_input_key of this ExtensionData. # noqa: E501 129 130 # noqa: E501 131 132 :return: The action_input_key of this ExtensionData. # noqa: E501 133 :rtype: str 134 """ 135 return self._action_input_key 136 137 @action_input_key.setter 138 def action_input_key(self, action_input_key): 139 """Sets the action_input_key of this ExtensionData. 140 141 # noqa: E501 142 143 :param action_input_key: The action_input_key of this ExtensionData. # noqa: E501 144 :type: str 145 """ 146 147 self._action_input_key = action_input_key 148 149 @property 150 def action_name(self): 151 """Gets the action_name of this ExtensionData. # noqa: E501 152 153 # noqa: E501 154 155 :return: The action_name of this ExtensionData. # noqa: E501 156 :rtype: str 157 """ 158 return self._action_name 159 160 @action_name.setter 161 def action_name(self, action_name): 162 """Sets the action_name of this ExtensionData. 163 164 # noqa: E501 165 166 :param action_name: The action_name of this ExtensionData. # noqa: E501 167 :type: str 168 """ 169 170 self._action_name = action_name 171 172 @property 173 def application_id(self): 174 """Gets the application_id of this ExtensionData. # noqa: E501 175 176 # noqa: E501 177 178 :return: The application_id of this ExtensionData. # noqa: E501 179 :rtype: str 180 """ 181 return self._application_id 182 183 @application_id.setter 184 def application_id(self, application_id): 185 """Sets the application_id of this ExtensionData. 186 187 # noqa: E501 188 189 :param application_id: The application_id of this ExtensionData. # noqa: E501 190 :type: str 191 """ 192 193 self._application_id = application_id 194 195 @property 196 def application_name(self): 197 """Gets the application_name of this ExtensionData. # noqa: E501 198 199 # noqa: E501 200 201 :return: The application_name of this ExtensionData. # noqa: E501 202 :rtype: str 203 """ 204 return self._application_name 205 206 @application_name.setter 207 def application_name(self, application_name): 208 """Sets the application_name of this ExtensionData. 209 210 # noqa: E501 211 212 :param application_name: The application_name of this ExtensionData. # noqa: E501 213 :type: str 214 """ 215 216 self._application_name = application_name 217 218 @property 219 def connected_fields_data(self): 220 """Gets the connected_fields_data of this ExtensionData. # noqa: E501 221 222 # noqa: E501 223 224 :return: The connected_fields_data of this ExtensionData. # noqa: E501 225 :rtype: ConnectedData 226 """ 227 return self._connected_fields_data 228 229 @connected_fields_data.setter 230 def connected_fields_data(self, connected_fields_data): 231 """Sets the connected_fields_data of this ExtensionData. 232 233 # noqa: E501 234 235 :param connected_fields_data: The connected_fields_data of this ExtensionData. # noqa: E501 236 :type: ConnectedData 237 """ 238 239 self._connected_fields_data = connected_fields_data 240 241 @property 242 def connection_instances(self): 243 """Gets the connection_instances of this ExtensionData. # noqa: E501 244 245 # noqa: E501 246 247 :return: The connection_instances of this ExtensionData. # noqa: E501 248 :rtype: list[ConnectionInstance] 249 """ 250 return self._connection_instances 251 252 @connection_instances.setter 253 def connection_instances(self, connection_instances): 254 """Sets the connection_instances of this ExtensionData. 255 256 # noqa: E501 257 258 :param connection_instances: The connection_instances of this ExtensionData. # noqa: E501 259 :type: list[ConnectionInstance] 260 """ 261 262 self._connection_instances = connection_instances 263 264 @property 265 def extension_contract(self): 266 """Gets the extension_contract of this ExtensionData. # noqa: E501 267 268 # noqa: E501 269 270 :return: The extension_contract of this ExtensionData. # noqa: E501 271 :rtype: str 272 """ 273 return self._extension_contract 274 275 @extension_contract.setter 276 def extension_contract(self, extension_contract): 277 """Sets the extension_contract of this ExtensionData. 278 279 # noqa: E501 280 281 :param extension_contract: The extension_contract of this ExtensionData. # noqa: E501 282 :type: str 283 """ 284 285 self._extension_contract = extension_contract 286 287 @property 288 def extension_group_id(self): 289 """Gets the extension_group_id of this ExtensionData. # noqa: E501 290 291 # noqa: E501 292 293 :return: The extension_group_id of this ExtensionData. # noqa: E501 294 :rtype: str 295 """ 296 return self._extension_group_id 297 298 @extension_group_id.setter 299 def extension_group_id(self, extension_group_id): 300 """Sets the extension_group_id of this ExtensionData. 301 302 # noqa: E501 303 304 :param extension_group_id: The extension_group_id of this ExtensionData. # noqa: E501 305 :type: str 306 """ 307 308 self._extension_group_id = extension_group_id 309 310 @property 311 def extension_name(self): 312 """Gets the extension_name of this ExtensionData. # noqa: E501 313 314 # noqa: E501 315 316 :return: The extension_name of this ExtensionData. # noqa: E501 317 :rtype: str 318 """ 319 return self._extension_name 320 321 @extension_name.setter 322 def extension_name(self, extension_name): 323 """Sets the extension_name of this ExtensionData. 324 325 # noqa: E501 326 327 :param extension_name: The extension_name of this ExtensionData. # noqa: E501 328 :type: str 329 """ 330 331 self._extension_name = extension_name 332 333 @property 334 def extension_policy(self): 335 """Gets the extension_policy of this ExtensionData. # noqa: E501 336 337 # noqa: E501 338 339 :return: The extension_policy of this ExtensionData. # noqa: E501 340 :rtype: str 341 """ 342 return self._extension_policy 343 344 @extension_policy.setter 345 def extension_policy(self, extension_policy): 346 """Sets the extension_policy of this ExtensionData. 347 348 # noqa: E501 349 350 :param extension_policy: The extension_policy of this ExtensionData. # noqa: E501 351 :type: str 352 """ 353 354 self._extension_policy = extension_policy 355 356 @property 357 def publisher_name(self): 358 """Gets the publisher_name of this ExtensionData. # noqa: E501 359 360 # noqa: E501 361 362 :return: The publisher_name of this ExtensionData. # noqa: E501 363 :rtype: str 364 """ 365 return self._publisher_name 366 367 @publisher_name.setter 368 def publisher_name(self, publisher_name): 369 """Sets the publisher_name of this ExtensionData. 370 371 # noqa: E501 372 373 :param publisher_name: The publisher_name of this ExtensionData. # noqa: E501 374 :type: str 375 """ 376 377 self._publisher_name = publisher_name 378 379 @property 380 def required_for_extension(self): 381 """Gets the required_for_extension of this ExtensionData. # noqa: E501 382 383 # noqa: E501 384 385 :return: The required_for_extension of this ExtensionData. # noqa: E501 386 :rtype: str 387 """ 388 return self._required_for_extension 389 390 @required_for_extension.setter 391 def required_for_extension(self, required_for_extension): 392 """Sets the required_for_extension of this ExtensionData. 393 394 # noqa: E501 395 396 :param required_for_extension: The required_for_extension of this ExtensionData. # noqa: E501 397 :type: str 398 """ 399 400 self._required_for_extension = required_for_extension 401 402 def to_dict(self): 403 """Returns the model properties as a dict""" 404 result = {} 405 406 for attr, _ in six.iteritems(self.swagger_types): 407 value = getattr(self, attr) 408 if isinstance(value, list): 409 result[attr] = list(map( 410 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 411 value 412 )) 413 elif hasattr(value, "to_dict"): 414 result[attr] = value.to_dict() 415 elif isinstance(value, dict): 416 result[attr] = dict(map( 417 lambda item: (item[0], item[1].to_dict()) 418 if hasattr(item[1], "to_dict") else item, 419 value.items() 420 )) 421 else: 422 result[attr] = value 423 if issubclass(ExtensionData, dict): 424 for key, value in self.items(): 425 result[key] = value 426 427 return result 428 429 def to_str(self): 430 """Returns the string representation of the model""" 431 return pprint.pformat(self.to_dict()) 432 433 def __repr__(self): 434 """For `print` and `pprint`""" 435 return self.to_str() 436 437 def __eq__(self, other): 438 """Returns true if both objects are equal""" 439 if not isinstance(other, ExtensionData): 440 return False 441 442 return self.to_dict() == other.to_dict() 443 444 def __ne__(self, other): 445 """Returns true if both objects are not equal""" 446 if not isinstance(other, ExtensionData): 447 return True 448 449 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.
68 def __init__(self, _configuration=None, **kwargs): # noqa: E501 69 """ExtensionData - a model defined in Swagger""" # noqa: E501 70 if _configuration is None: 71 _configuration = Configuration() 72 self._configuration = _configuration 73 74 self._action_contract = None 75 self._action_input_key = None 76 self._action_name = None 77 self._application_id = None 78 self._application_name = None 79 self._connected_fields_data = None 80 self._connection_instances = None 81 self._extension_contract = None 82 self._extension_group_id = None 83 self._extension_name = None 84 self._extension_policy = None 85 self._publisher_name = None 86 self._required_for_extension = None 87 self.discriminator = None 88 89 setattr(self, "_{}".format('action_contract'), kwargs.get('action_contract', None)) 90 setattr(self, "_{}".format('action_input_key'), kwargs.get('action_input_key', None)) 91 setattr(self, "_{}".format('action_name'), kwargs.get('action_name', None)) 92 setattr(self, "_{}".format('application_id'), kwargs.get('application_id', None)) 93 setattr(self, "_{}".format('application_name'), kwargs.get('application_name', None)) 94 setattr(self, "_{}".format('connected_fields_data'), kwargs.get('connected_fields_data', None)) 95 setattr(self, "_{}".format('connection_instances'), kwargs.get('connection_instances', None)) 96 setattr(self, "_{}".format('extension_contract'), kwargs.get('extension_contract', None)) 97 setattr(self, "_{}".format('extension_group_id'), kwargs.get('extension_group_id', None)) 98 setattr(self, "_{}".format('extension_name'), kwargs.get('extension_name', None)) 99 setattr(self, "_{}".format('extension_policy'), kwargs.get('extension_policy', None)) 100 setattr(self, "_{}".format('publisher_name'), kwargs.get('publisher_name', None)) 101 setattr(self, "_{}".format('required_for_extension'), kwargs.get('required_for_extension', None))
ExtensionData - a model defined in Swagger
Gets the action_contract of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The action_contract of this ExtensionData. # noqa: E501
Gets the action_input_key of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The action_input_key of this ExtensionData. # noqa: E501
Gets the action_name of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The action_name of this ExtensionData. # noqa: E501
Gets the application_id of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The application_id of this ExtensionData. # noqa: E501
Gets the application_name of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The application_name of this ExtensionData. # noqa: E501
Gets the connected_fields_data of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The connected_fields_data of this ExtensionData. # noqa: E501
Gets the connection_instances of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The connection_instances of this ExtensionData. # noqa: E501
Gets the extension_contract of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The extension_contract of this ExtensionData. # noqa: E501
Gets the extension_group_id of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The extension_group_id of this ExtensionData. # noqa: E501
Gets the extension_name of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The extension_name of this ExtensionData. # noqa: E501
Gets the extension_policy of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The extension_policy of this ExtensionData. # noqa: E501
Gets the publisher_name of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The publisher_name of this ExtensionData. # noqa: E501
Gets the required_for_extension of this ExtensionData. # noqa: E501
# noqa: E501
Returns
The required_for_extension of this ExtensionData. # noqa: E501
402 def to_dict(self): 403 """Returns the model properties as a dict""" 404 result = {} 405 406 for attr, _ in six.iteritems(self.swagger_types): 407 value = getattr(self, attr) 408 if isinstance(value, list): 409 result[attr] = list(map( 410 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 411 value 412 )) 413 elif hasattr(value, "to_dict"): 414 result[attr] = value.to_dict() 415 elif isinstance(value, dict): 416 result[attr] = dict(map( 417 lambda item: (item[0], item[1].to_dict()) 418 if hasattr(item[1], "to_dict") else item, 419 value.items() 420 )) 421 else: 422 result[attr] = value 423 if issubclass(ExtensionData, dict): 424 for key, value in self.items(): 425 result[key] = value 426 427 return result
Returns the model properties as a dict