Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 981 Bytes

File metadata and controls

31 lines (22 loc) · 981 Bytes

ResellerContact

Properties

Name Type Description Notes
name str [optional]
email_address str [optional]
phone str [optional]

Example

from whoisfreaks.models.reseller_contact import ResellerContact

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

# convert the object into a dict
reseller_contact_dict = reseller_contact_instance.to_dict()
# create an instance of ResellerContact from a dict
reseller_contact_from_dict = ResellerContact.from_dict(reseller_contact_dict)

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