@@ -36,6 +36,7 @@ class Agent(object):
3636 'add_access_code_to_email' : 'str' ,
3737 'additional_notifications' : 'list[RecipientAdditionalNotification]' ,
3838 'allow_system_override_for_locked_recipient' : 'str' ,
39+ 'auto_responded_reason' : 'str' ,
3940 'client_user_id' : 'str' ,
4041 'completed_count' : 'str' ,
4142 'custom_fields' : 'list[str]' ,
@@ -73,6 +74,8 @@ class Agent(object):
7374 'note' : 'str' ,
7475 'note_metadata' : 'PropertyMetadata' ,
7576 'phone_authentication' : 'RecipientPhoneAuthentication' ,
77+ 'phone_number' : 'RecipientPhoneNumber' ,
78+ 'phone_number_metadata' : 'PropertyMetadata' ,
7679 'recipient_attachments' : 'list[RecipientAttachment]' ,
7780 'recipient_authentication_status' : 'AuthenticationStatus' ,
7881 'recipient_feature_metadata' : 'list[FeatureAvailableMetadata]' ,
@@ -108,6 +111,7 @@ class Agent(object):
108111 'add_access_code_to_email' : 'addAccessCodeToEmail' ,
109112 'additional_notifications' : 'additionalNotifications' ,
110113 'allow_system_override_for_locked_recipient' : 'allowSystemOverrideForLockedRecipient' ,
114+ 'auto_responded_reason' : 'autoRespondedReason' ,
111115 'client_user_id' : 'clientUserId' ,
112116 'completed_count' : 'completedCount' ,
113117 'custom_fields' : 'customFields' ,
@@ -145,6 +149,8 @@ class Agent(object):
145149 'note' : 'note' ,
146150 'note_metadata' : 'noteMetadata' ,
147151 'phone_authentication' : 'phoneAuthentication' ,
152+ 'phone_number' : 'phoneNumber' ,
153+ 'phone_number_metadata' : 'phoneNumberMetadata' ,
148154 'recipient_attachments' : 'recipientAttachments' ,
149155 'recipient_authentication_status' : 'recipientAuthenticationStatus' ,
150156 'recipient_feature_metadata' : 'recipientFeatureMetadata' ,
@@ -174,14 +180,15 @@ class Agent(object):
174180 'user_id' : 'userId'
175181 }
176182
177- def __init__ (self , access_code = None , access_code_metadata = None , add_access_code_to_email = None , additional_notifications = None , allow_system_override_for_locked_recipient = None , client_user_id = None , completed_count = None , custom_fields = None , declined_date_time = None , declined_reason = None , delivered_date_time = None , delivery_method = None , delivery_method_metadata = None , designator_id = None , designator_id_guid = None , document_visibility = None , email = None , email_metadata = None , email_notification = None , embedded_recipient_start_url = None , error_details = None , excluded_documents = None , fax_number = None , fax_number_metadata = None , first_name = None , first_name_metadata = None , full_name = None , full_name_metadata = None , id_check_configuration_name = None , id_check_configuration_name_metadata = None , id_check_information_input = None , identity_verification = None , inherit_email_notification_configuration = None , last_name = None , last_name_metadata = None , locked_recipient_phone_auth_editable = None , locked_recipient_sms_editable = None , name = None , name_metadata = None , note = None , note_metadata = None , phone_authentication = None , recipient_attachments = None , recipient_authentication_status = None , recipient_feature_metadata = None , recipient_id = None , recipient_id_guid = None , recipient_type = None , recipient_type_metadata = None , require_id_lookup = None , require_id_lookup_metadata = None , role_name = None , routing_order = None , routing_order_metadata = None , sent_date_time = None , signed_date_time = None , signing_group_id = None , signing_group_id_metadata = None , signing_group_name = None , signing_group_users = None , sms_authentication = None , social_authentications = None , status = None , status_code = None , suppress_emails = None , template_locked = None , template_required = None , total_tab_count = None , user_id = None ): # noqa: E501
183+ def __init__ (self , access_code = None , access_code_metadata = None , add_access_code_to_email = None , additional_notifications = None , allow_system_override_for_locked_recipient = None , auto_responded_reason = None , client_user_id = None , completed_count = None , custom_fields = None , declined_date_time = None , declined_reason = None , delivered_date_time = None , delivery_method = None , delivery_method_metadata = None , designator_id = None , designator_id_guid = None , document_visibility = None , email = None , email_metadata = None , email_notification = None , embedded_recipient_start_url = None , error_details = None , excluded_documents = None , fax_number = None , fax_number_metadata = None , first_name = None , first_name_metadata = None , full_name = None , full_name_metadata = None , id_check_configuration_name = None , id_check_configuration_name_metadata = None , id_check_information_input = None , identity_verification = None , inherit_email_notification_configuration = None , last_name = None , last_name_metadata = None , locked_recipient_phone_auth_editable = None , locked_recipient_sms_editable = None , name = None , name_metadata = None , note = None , note_metadata = None , phone_authentication = None , phone_number = None , phone_number_metadata = None , recipient_attachments = None , recipient_authentication_status = None , recipient_feature_metadata = None , recipient_id = None , recipient_id_guid = None , recipient_type = None , recipient_type_metadata = None , require_id_lookup = None , require_id_lookup_metadata = None , role_name = None , routing_order = None , routing_order_metadata = None , sent_date_time = None , signed_date_time = None , signing_group_id = None , signing_group_id_metadata = None , signing_group_name = None , signing_group_users = None , sms_authentication = None , social_authentications = None , status = None , status_code = None , suppress_emails = None , template_locked = None , template_required = None , total_tab_count = None , user_id = None ): # noqa: E501
178184 """Agent - a model defined in Swagger""" # noqa: E501
179185
180186 self ._access_code = None
181187 self ._access_code_metadata = None
182188 self ._add_access_code_to_email = None
183189 self ._additional_notifications = None
184190 self ._allow_system_override_for_locked_recipient = None
191+ self ._auto_responded_reason = None
185192 self ._client_user_id = None
186193 self ._completed_count = None
187194 self ._custom_fields = None
@@ -219,6 +226,8 @@ def __init__(self, access_code=None, access_code_metadata=None, add_access_code_
219226 self ._note = None
220227 self ._note_metadata = None
221228 self ._phone_authentication = None
229+ self ._phone_number = None
230+ self ._phone_number_metadata = None
222231 self ._recipient_attachments = None
223232 self ._recipient_authentication_status = None
224233 self ._recipient_feature_metadata = None
@@ -258,6 +267,8 @@ def __init__(self, access_code=None, access_code_metadata=None, add_access_code_
258267 self .additional_notifications = additional_notifications
259268 if allow_system_override_for_locked_recipient is not None :
260269 self .allow_system_override_for_locked_recipient = allow_system_override_for_locked_recipient
270+ if auto_responded_reason is not None :
271+ self .auto_responded_reason = auto_responded_reason
261272 if client_user_id is not None :
262273 self .client_user_id = client_user_id
263274 if completed_count is not None :
@@ -332,6 +343,10 @@ def __init__(self, access_code=None, access_code_metadata=None, add_access_code_
332343 self .note_metadata = note_metadata
333344 if phone_authentication is not None :
334345 self .phone_authentication = phone_authentication
346+ if phone_number is not None :
347+ self .phone_number = phone_number
348+ if phone_number_metadata is not None :
349+ self .phone_number_metadata = phone_number_metadata
335350 if recipient_attachments is not None :
336351 self .recipient_attachments = recipient_attachments
337352 if recipient_authentication_status is not None :
@@ -500,6 +515,29 @@ def allow_system_override_for_locked_recipient(self, allow_system_override_for_l
500515
501516 self ._allow_system_override_for_locked_recipient = allow_system_override_for_locked_recipient
502517
518+ @property
519+ def auto_responded_reason (self ):
520+ """Gets the auto_responded_reason of this Agent. # noqa: E501
521+
522+ # noqa: E501
523+
524+ :return: The auto_responded_reason of this Agent. # noqa: E501
525+ :rtype: str
526+ """
527+ return self ._auto_responded_reason
528+
529+ @auto_responded_reason .setter
530+ def auto_responded_reason (self , auto_responded_reason ):
531+ """Sets the auto_responded_reason of this Agent.
532+
533+ # noqa: E501
534+
535+ :param auto_responded_reason: The auto_responded_reason of this Agent. # noqa: E501
536+ :type: str
537+ """
538+
539+ self ._auto_responded_reason = auto_responded_reason
540+
503541 @property
504542 def client_user_id (self ):
505543 """Gets the client_user_id of this Agent. # noqa: E501
@@ -1323,6 +1361,48 @@ def phone_authentication(self, phone_authentication):
13231361
13241362 self ._phone_authentication = phone_authentication
13251363
1364+ @property
1365+ def phone_number (self ):
1366+ """Gets the phone_number of this Agent. # noqa: E501
1367+
1368+
1369+ :return: The phone_number of this Agent. # noqa: E501
1370+ :rtype: RecipientPhoneNumber
1371+ """
1372+ return self ._phone_number
1373+
1374+ @phone_number .setter
1375+ def phone_number (self , phone_number ):
1376+ """Sets the phone_number of this Agent.
1377+
1378+
1379+ :param phone_number: The phone_number of this Agent. # noqa: E501
1380+ :type: RecipientPhoneNumber
1381+ """
1382+
1383+ self ._phone_number = phone_number
1384+
1385+ @property
1386+ def phone_number_metadata (self ):
1387+ """Gets the phone_number_metadata of this Agent. # noqa: E501
1388+
1389+
1390+ :return: The phone_number_metadata of this Agent. # noqa: E501
1391+ :rtype: PropertyMetadata
1392+ """
1393+ return self ._phone_number_metadata
1394+
1395+ @phone_number_metadata .setter
1396+ def phone_number_metadata (self , phone_number_metadata ):
1397+ """Sets the phone_number_metadata of this Agent.
1398+
1399+
1400+ :param phone_number_metadata: The phone_number_metadata of this Agent. # noqa: E501
1401+ :type: PropertyMetadata
1402+ """
1403+
1404+ self ._phone_number_metadata = phone_number_metadata
1405+
13261406 @property
13271407 def recipient_attachments (self ):
13281408 """Gets the recipient_attachments of this Agent. # noqa: E501
0 commit comments