| Name |
Type |
Description |
Notes |
| email |
str |
|
[optional] |
| external_url |
str |
|
|
| language |
str |
|
[optional] |
| password |
str |
|
|
| site_title |
str |
|
|
| username |
str |
|
|
from halo_client.models.setup_request import SetupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetupRequest from a JSON string
setup_request_instance = SetupRequest.from_json(json)
# print the JSON string representation of the object
print(SetupRequest.to_json())
# convert the object into a dict
setup_request_dict = setup_request_instance.to_dict()
# create an instance of SetupRequest from a dict
setup_request_from_dict = SetupRequest.from_dict(setup_request_dict)
[Back to Model list] [Back to API list] [Back to README]