Session object to be returned within Legislation
| Name | Type | Description | Notes |
|---|---|---|---|
| session_id | int | unique identifer for session | [optional] |
| session_code | str | Session Code identifier (e.g. 20181 for 2018 Regular Session) | [optional] |
| is_prefile | bool | Is Prefiled Legislation | [optional] |
from valis.models.session_response import SessionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SessionResponse from a JSON string
session_response_instance = SessionResponse.from_json(json)
# print the JSON string representation of the object
print(SessionResponse.to_json())
# convert the object into a dict
session_response_dict = session_response_instance.to_dict()
# create an instance of SessionResponse from a dict
session_response_from_dict = SessionResponse.from_dict(session_response_dict)