# TagUpdateRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **str** | | [optional] **format** | **str** | | [optional] ## Example ```python from h2ogpte.rest.models.tag_update_request import TagUpdateRequest # TODO update the JSON string below json = "{}" # create an instance of TagUpdateRequest from a JSON string tag_update_request_instance = TagUpdateRequest.from_json(json) # print the JSON string representation of the object print(TagUpdateRequest.to_json()) # convert the object into a dict tag_update_request_dict = tag_update_request_instance.to_dict() # create an instance of TagUpdateRequest from a dict tag_update_request_from_dict = TagUpdateRequest.from_dict(tag_update_request_dict) ```