Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.52 KB

File metadata and controls

50 lines (41 loc) · 2.52 KB

DocketPublicListGetResponse

Public Docket Listing

Properties

Name Type Description Notes
docket_date datetime Docket(Committee Calendar) Date
meeting_time str Meeting Time [optional]
docket_number int Docket(Committee Calendar) Number [optional]
description str Docket(Committee Calendar) Description [optional]
is_public bool Is Docket(Committee Calendar) for Public Consumption [optional]
docket_type_id int Docket(Committee Calendar) Type ID [optional]
docket_type str Docket Type
chamber_code str Chamber Code is always defaulted to S for Senate [optional]
session_id int Session ID
session_code str Session Code [optional]
vote_room_id int Vote Room ID [optional]
comments str Meeting Notes/Comments [optional]
committee_id int Committee ID
committee_name str Committee Name [optional]
parent_committee_name str Parent Committee Name [optional]
pending_change bool Pending Change to Docket [optional]
reference_number str Reference Number used for External Reference to Docket [optional]
is_proforma bool IsProforma to Calendar [optional]
deletion_date datetime Docket(Committee Calendar) Deletion Date [optional]
docket_id int Docket unique identifier
docket_files List[DocketFilePublicGetResponse] list of Docket Files for a specific Senate Docket [optional]

Example

from valis.models.docket_public_list_get_response import DocketPublicListGetResponse

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

# convert the object into a dict
docket_public_list_get_response_dict = docket_public_list_get_response_instance.to_dict()
# create an instance of DocketPublicListGetResponse from a dict
docket_public_list_get_response_from_dict = DocketPublicListGetResponse.from_dict(docket_public_list_get_response_dict)

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