Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.63 KB

File metadata and controls

32 lines (23 loc) · 1.63 KB

LogStreamLinksSelfAndLifecycle

Specifies link relations (see Web Linking) available for the current status of an application using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations.

Properties

Name Type Description Notes
activate LogStreamActivateLink [optional]
deactivate LogStreamDeactivateLink [optional]
var_self LogStreamSelfLink

Example

from okta.models.log_stream_links_self_and_lifecycle import LogStreamLinksSelfAndLifecycle

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

# convert the object into a dict
log_stream_links_self_and_lifecycle_dict = log_stream_links_self_and_lifecycle_instance.to_dict()
# create an instance of LogStreamLinksSelfAndLifecycle from a dict
log_stream_links_self_and_lifecycle_from_dict = LogStreamLinksSelfAndLifecycle.from_dict(log_stream_links_self_and_lifecycle_dict)

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