Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

QueryDetailsDerivedVariables.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

QueryDetailsDerivedVariables

Properties

Name Type Description Notes
key str Key
value_type str Value Type
source_key str Source Key

Example

from onelens_backend_client.models.query_details_derived_variables import QueryDetailsDerivedVariables

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

# convert the object into a dict
query_details_derived_variables_dict = query_details_derived_variables_instance.to_dict()
# create an instance of QueryDetailsDerivedVariables from a dict
query_details_derived_variables_form_dict = query_details_derived_variables.from_dict(query_details_derived_variables_dict)

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