Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 851 Bytes

File metadata and controls

29 lines (20 loc) · 851 Bytes

ProfileBio

Properties

Name Type Description Notes
description str

Example

from twitter_openapi_python_generated.models.profile_bio import ProfileBio

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

# convert the object into a dict
profile_bio_dict = profile_bio_instance.to_dict()
# create an instance of ProfileBio from a dict
profile_bio_from_dict = ProfileBio.from_dict(profile_bio_dict)

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