Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1016 Bytes

File metadata and controls

30 lines (21 loc) · 1016 Bytes

LogStreamSelfLink

Properties

Name Type Description Notes
href str The URI of the resource
method str HTTP method allowed for the resource [optional]

Example

from okta.models.log_stream_self_link import LogStreamSelfLink

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

# convert the object into a dict
log_stream_self_link_dict = log_stream_self_link_instance.to_dict()
# create an instance of LogStreamSelfLink from a dict
log_stream_self_link_from_dict = LogStreamSelfLink.from_dict(log_stream_self_link_dict)

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