Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

File metadata and controls

29 lines (20 loc) · 941 Bytes

LogStreamSplunk

Properties

Name Type Description Notes
settings LogStreamSettingsSplunk

Example

from okta.models.log_stream_splunk import LogStreamSplunk

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

# convert the object into a dict
log_stream_splunk_dict = log_stream_splunk_instance.to_dict()
# create an instance of LogStreamSplunk from a dict
log_stream_splunk_from_dict = LogStreamSplunk.from_dict(log_stream_splunk_dict)

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