Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

ConsentActionResponse

Properties

Name Type Description Notes
consent UserConsent [optional]
message str [optional]

Example

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)

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