Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 987 Bytes

File metadata and controls

35 lines (26 loc) · 987 Bytes

URIs

Properties

Name Type Description Notes
api_doc str [optional]
api_uri str [optional]
auth str [optional]
console str [optional]
contact_us str [optional]
doc str [optional]
landing_page str [optional]

Example

from hyperstack.models.uris import URIs

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

# convert the object into a dict
uris_dict = uris_instance.to_dict()
# create an instance of URIs from a dict
uris_from_dict = URIs.from_dict(uris_dict)

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