Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 905 Bytes

EmailInput.md

File metadata and controls

31 lines (22 loc) · 905 Bytes

EmailInput

Properties

Name Type Description Notes
address str
default bool [optional]
href str [optional]

Example

from equinix_metal.models.email_input import EmailInput

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

# convert the object into a dict
email_input_dict = email_input_instance.to_dict()
# create an instance of EmailInput from a dict
email_input_form_dict = email_input.from_dict(email_input_dict)

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