Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

LogStreamActivateLink

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_activate_link import LogStreamActivateLink

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

# convert the object into a dict
log_stream_activate_link_dict = log_stream_activate_link_instance.to_dict()
# create an instance of LogStreamActivateLink from a dict
log_stream_activate_link_from_dict = LogStreamActivateLink.from_dict(log_stream_activate_link_dict)

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