Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 909 Bytes

File metadata and controls

28 lines (20 loc) · 909 Bytes

GetURLResponse

Properties

Name Type Description Notes
url SafeURL [optional]

Example

from ri.apiclient.models.get_url_response import GetURLResponse

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

# convert the object into a dict
get_url_response_dict = get_url_response_instance.to_dict()
# create an instance of GetURLResponse from a dict
get_url_response_from_dict = GetURLResponse.from_dict(get_url_response_dict)

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