| Name | Type | Description | Notes |
|---|---|---|---|
| settings | LogStreamSettingsSplunk |
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)