| Name | Type | Description | Notes |
|---|---|---|---|
| consent | UserConsent | [optional] | |
| message | str | [optional] |
from hyperstack.models.consent_action_response import ConsentActionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConsentActionResponse from a JSON string
consent_action_response_instance = ConsentActionResponse.from_json(json)
# print the JSON string representation of the object
print(ConsentActionResponse.to_json())
# convert the object into a dict
consent_action_response_dict = consent_action_response_instance.to_dict()
# create an instance of ConsentActionResponse from a dict
consent_action_response_from_dict = ConsentActionResponse.from_dict(consent_action_response_dict)