Request and Response object containing a list of LIS Sessions with Events (using SessionResponse). If no valid response could be obtained, Success boolean will be false and additional information can be found in the FailureMessage string.
| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | Is this a successful response? | [optional] |
| failure_message | str | Details if this response failed | [optional] |
| cache_key_name | str | CacheKey name | [optional] |
| list_items | List[SessionEventTypeReferenceResponse] | list of Session Events | [optional] |
from valis.models.session_event_types_reference_response import SessionEventTypesReferenceResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SessionEventTypesReferenceResponse from a JSON string
session_event_types_reference_response_instance = SessionEventTypesReferenceResponse.from_json(json)
# print the JSON string representation of the object
print(SessionEventTypesReferenceResponse.to_json())
# convert the object into a dict
session_event_types_reference_response_dict = session_event_types_reference_response_instance.to_dict()
# create an instance of SessionEventTypesReferenceResponse from a dict
session_event_types_reference_response_from_dict = SessionEventTypesReferenceResponse.from_dict(session_event_types_reference_response_dict)