Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

DataRetrieverRequest.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

DataRetrieverRequest

Properties

Name Type Description Notes
query DataRetrieverQuery Query to be executed

Example

from onelens_backend_client.models.data_retriever_request import DataRetrieverRequest

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

# convert the object into a dict
data_retriever_request_dict = data_retriever_request_instance.to_dict()
# create an instance of DataRetrieverRequest from a dict
data_retriever_request_form_dict = data_retriever_request.from_dict(data_retriever_request_dict)

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