Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

RemoveAuthentication.md

File metadata and controls

32 lines (23 loc) · 1.09 KB

RemoveAuthentication

Properties

Name Type Description Notes
email_id str [optional]
z_order int [optional]
phone_number PhoneNumber [optional]
on_behalf_of str [optional]

Example

from boldsign.models.remove_authentication import RemoveAuthentication

# TODO update the JSON string below
json = "{}"
# create an instance of RemoveAuthentication from a JSON string
remove_authentication_instance = RemoveAuthentication.from_json(json)
# print the JSON string representation of the object
print(RemoveAuthentication.to_json())

# convert the object into a dict
remove_authentication_dict = remove_authentication_instance.to_dict()
# create an instance of RemoveAuthentication from a dict
remove_authentication_from_dict = RemoveAuthentication.from_dict(remove_authentication_dict)

[Back to Model list] [Back to API list] [Back to README]