from okta.models.org_contact_type_obj import OrgContactTypeObj
# TODO update the JSON string below
json = "{}"
# create an instance of OrgContactTypeObj from a JSON string
org_contact_type_obj_instance = OrgContactTypeObj.from_json(json)
# print the JSON string representation of the object
print(OrgContactTypeObj.to_json())
# convert the object into a dict
org_contact_type_obj_dict = org_contact_type_obj_instance.to_dict()
# create an instance of OrgContactTypeObj from a dict
org_contact_type_obj_from_dict = OrgContactTypeObj.from_dict(org_contact_type_obj_dict)
[Back to Model list] [Back to API list] [Back to README]