Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

SessionResponse

Session object to be returned within Legislation

Properties

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]

Example

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)

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