# UpdateSecretRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **secret_value** | **Dict[str, object]** | The secret data to update | ## Example ```python from h2ogpte.rest_async.models.update_secret_request import UpdateSecretRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateSecretRequest from a JSON string update_secret_request_instance = UpdateSecretRequest.from_json(json) # print the JSON string representation of the object print(UpdateSecretRequest.to_json()) # convert the object into a dict update_secret_request_dict = update_secret_request_instance.to_dict() # create an instance of UpdateSecretRequest from a dict update_secret_request_from_dict = UpdateSecretRequest.from_dict(update_secret_request_dict) ```