| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| profile | ProfileFields | [optional] | |
| status | bool | [optional] |
from hyperstack.models.create_profile_response import CreateProfileResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateProfileResponse from a JSON string
create_profile_response_instance = CreateProfileResponse.from_json(json)
# print the JSON string representation of the object
print(CreateProfileResponse.to_json())
# convert the object into a dict
create_profile_response_dict = create_profile_response_instance.to_dict()
# create an instance of CreateProfileResponse from a dict
create_profile_response_from_dict = CreateProfileResponse.from_dict(create_profile_response_dict)