ResetAndShareRequest

Properties

Name

Type

Description

Notes

usernames

List[str]

Example

from h2ogpte.rest_async.models.reset_and_share_request import ResetAndShareRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ResetAndShareRequest from a JSON string
reset_and_share_request_instance = ResetAndShareRequest.from_json(json)
# print the JSON string representation of the object
print(ResetAndShareRequest.to_json())

# convert the object into a dict
reset_and_share_request_dict = reset_and_share_request_instance.to_dict()
# create an instance of ResetAndShareRequest from a dict
reset_and_share_request_from_dict = ResetAndShareRequest.from_dict(reset_and_share_request_dict)