Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

LogStreamSplunkPutSchema

Properties

Name Type Description Notes
settings LogStreamSettingsSplunkPut

Example

from okta.models.log_stream_splunk_put_schema import LogStreamSplunkPutSchema

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

# convert the object into a dict
log_stream_splunk_put_schema_dict = log_stream_splunk_put_schema_instance.to_dict()
# create an instance of LogStreamSplunkPutSchema from a dict
log_stream_splunk_put_schema_from_dict = LogStreamSplunkPutSchema.from_dict(log_stream_splunk_put_schema_dict)

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