Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.44 KB

File metadata and controls

42 lines (33 loc) · 1.44 KB

TeamArrayInner

Properties

Name Type Description Notes
contact_email str [optional]
created int [optional]
expire_date int [optional]
expire_reason str [optional]
lastlogin int [optional]
locale str [optional]
notes str [optional]
password str [optional]
roles List[str] [optional]
secondary_contact_email str [optional]
services Services [optional]
suspend_date int [optional]
suspend_reason str [optional]
username str [optional]

Example

from clientapi_cpanel.models.team_array_inner import TeamArrayInner

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

# convert the object into a dict
team_array_inner_dict = team_array_inner_instance.to_dict()
# create an instance of TeamArrayInner from a dict
team_array_inner_from_dict = TeamArrayInner.from_dict(team_array_inner_dict)

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