Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

GetUsersByRestIds200Response.md

File metadata and controls

30 lines (21 loc) · 1.16 KB

GetUsersByRestIds200Response

Properties

Name Type Description Notes
data UsersResponseData
errors List[Error]

Example

from twitter_openapi_python_generated.models.get_users_by_rest_ids200_response import GetUsersByRestIds200Response

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

# convert the object into a dict
get_users_by_rest_ids200_response_dict = get_users_by_rest_ids200_response_instance.to_dict()
# create an instance of GetUsersByRestIds200Response from a dict
get_users_by_rest_ids200_response_from_dict = GetUsersByRestIds200Response.from_dict(get_users_by_rest_ids200_response_dict)

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