Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

UserProfessional

Properties

Name Type Description Notes
category List[UserProfessionalCategory]
professional_type str
rest_id str

Example

from twitter_openapi_python_generated.models.user_professional import UserProfessional

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

# convert the object into a dict
user_professional_dict = user_professional_instance.to_dict()
# create an instance of UserProfessional from a dict
user_professional_from_dict = UserProfessional.from_dict(user_professional_dict)

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