| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| profiles | List[ProfileFields] | [optional] | |
| status | bool | [optional] |
from hyperstack.models.profile_list_response import ProfileListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ProfileListResponse from a JSON string
profile_list_response_instance = ProfileListResponse.from_json(json)
# print the JSON string representation of the object
print(ProfileListResponse.to_json())
# convert the object into a dict
profile_list_response_dict = profile_list_response_instance.to_dict()
# create an instance of ProfileListResponse from a dict
profile_list_response_from_dict = ProfileListResponse.from_dict(profile_list_response_dict)