Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

OrgContactTypeObj

Properties

Name Type Description Notes
contact_type OrgContactType [optional]
links LinksSelf [optional]

Example

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]