Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

UrtEndpointOptions

Properties

Name Type Description Notes
request_params List[UrtEndpointRequestParams]
title str

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]