Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ProfileResponseData

Properties

Name Type Description Notes
user_result_by_screen_name UserResultByScreenName [optional]

Example

from twitter_openapi_python_generated.models.profile_response_data import ProfileResponseData

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

# convert the object into a dict
profile_response_data_dict = profile_response_data_instance.to_dict()
# create an instance of ProfileResponseData from a dict
profile_response_data_from_dict = ProfileResponseData.from_dict(profile_response_data_dict)

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