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.
| Name | Type | Description | Notes |
|---|---|---|---|
| activate | LogStreamActivateLink | [optional] | |
| deactivate | LogStreamDeactivateLink | [optional] | |
| var_self | LogStreamSelfLink |
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)