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
The secret value that will be encrypted at rest and injected in applicable hook functions at run time.
Example
fromonelogin.models.update_environment_variable_requestimportUpdateEnvironmentVariableRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateEnvironmentVariableRequest from a JSON stringupdate_environment_variable_request_instance=UpdateEnvironmentVariableRequest.from_json(json)
# print the JSON string representation of the objectprintUpdateEnvironmentVariableRequest.to_json()
# convert the object into a dictupdate_environment_variable_request_dict=update_environment_variable_request_instance.to_dict()
# create an instance of UpdateEnvironmentVariableRequest from a dictupdate_environment_variable_request_form_dict=update_environment_variable_request.from_dict(update_environment_variable_request_dict)