# ResetAndSharePromptTemplateRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **usernames** | **List[str]** | | [optional] ## Example ```python from h2ogpte.rest_async.models.reset_and_share_prompt_template_request import ResetAndSharePromptTemplateRequest # TODO update the JSON string below json = "{}" # create an instance of ResetAndSharePromptTemplateRequest from a JSON string reset_and_share_prompt_template_request_instance = ResetAndSharePromptTemplateRequest.from_json(json) # print the JSON string representation of the object print(ResetAndSharePromptTemplateRequest.to_json()) # convert the object into a dict reset_and_share_prompt_template_request_dict = reset_and_share_prompt_template_request_instance.to_dict() # create an instance of ResetAndSharePromptTemplateRequest from a dict reset_and_share_prompt_template_request_from_dict = ResetAndSharePromptTemplateRequest.from_dict(reset_and_share_prompt_template_request_dict) ```