UrtEndpointOptions

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
request_paramsList[UrtEndpointRequestParams]
titlestr

Example

from twitter_openapi_python_generated.models.urt_endpoint_options import UrtEndpointOptions

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

# convert the object into a dict
urt_endpoint_options_dict = urt_endpoint_options_instance.to_dict()
# create an instance of UrtEndpointOptions from a dict
urt_endpoint_options_from_dict = UrtEndpointOptions.from_dict(urt_endpoint_options_dict)

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