Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 915 Bytes

File metadata and controls

29 lines (20 loc) · 915 Bytes

OtherResponse

Properties

Name Type Description Notes
session Session [optional]

Example

from twitter_openapi_python_generated.models.other_response import OtherResponse

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

# convert the object into a dict
other_response_dict = other_response_instance.to_dict()
# create an instance of OtherResponse from a dict
other_response_from_dict = OtherResponse.from_dict(other_response_dict)

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