You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should be set for file only. variable mount path makes variable a file (where file should be mounted).
[optional]
Example
fromqovery.models.environment_variable_requestimportEnvironmentVariableRequest# TODO update the JSON string belowjson="{}"# create an instance of EnvironmentVariableRequest from a JSON stringenvironment_variable_request_instance=EnvironmentVariableRequest.from_json(json)
# print the JSON string representation of the objectprintEnvironmentVariableRequest.to_json()
# convert the object into a dictenvironment_variable_request_dict=environment_variable_request_instance.to_dict()
# create an instance of EnvironmentVariableRequest from a dictenvironment_variable_request_form_dict=environment_variable_request.from_dict(environment_variable_request_dict)