Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.67 KB

File metadata and controls

33 lines (24 loc) · 1.67 KB

SessionEventTypesReferenceResponse

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.

Properties

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]

Example

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)

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