Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.62 KB

File metadata and controls

34 lines (25 loc) · 1.62 KB

LegislationsVersionResponse

Request and Response object containing a list of LIS Legislation Version. 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[LegislationVersionResponse] list of Legislation Version [optional]
search_criteria str Search JSON used to product these results [optional]

Example

from valis.models.legislations_version_response import LegislationsVersionResponse

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

# convert the object into a dict
legislations_version_response_dict = legislations_version_response_instance.to_dict()
# create an instance of LegislationsVersionResponse from a dict
legislations_version_response_from_dict = LegislationsVersionResponse.from_dict(legislations_version_response_dict)

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