| Name |
Type |
Description |
Notes |
| href |
str |
The URI of the resource |
|
| method |
str |
HTTP method allowed for the resource |
[optional] |
from okta.models.log_stream_link_object import LogStreamLinkObject
# TODO update the JSON string below
json = "{}"
# create an instance of LogStreamLinkObject from a JSON string
log_stream_link_object_instance = LogStreamLinkObject.from_json(json)
# print the JSON string representation of the object
print(LogStreamLinkObject.to_json())
# convert the object into a dict
log_stream_link_object_dict = log_stream_link_object_instance.to_dict()
# create an instance of LogStreamLinkObject from a dict
log_stream_link_object_from_dict = LogStreamLinkObject.from_dict(log_stream_link_object_dict)
[Back to Model list] [Back to API list] [Back to README]