Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

PasswordRequest

Properties

Name Type Description Notes
password str

Example

from halo_client.models.password_request import PasswordRequest

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

# convert the object into a dict
password_request_dict = password_request_instance.to_dict()
# create an instance of PasswordRequest from a dict
password_request_from_dict = PasswordRequest.from_dict(password_request_dict)

[Back to Model list] [Back to API list] [Back to README]