Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1005 Bytes

File metadata and controls

29 lines (20 loc) · 1005 Bytes

UserConsentsResponse

Properties

Name Type Description Notes
consents List[UserConsent] [optional]

Example

from hyperstack.models.user_consents_response import UserConsentsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of UserConsentsResponse from a JSON string
user_consents_response_instance = UserConsentsResponse.from_json(json)
# print the JSON string representation of the object
print(UserConsentsResponse.to_json())

# convert the object into a dict
user_consents_response_dict = user_consents_response_instance.to_dict()
# create an instance of UserConsentsResponse from a dict
user_consents_response_from_dict = UserConsentsResponse.from_dict(user_consents_response_dict)

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