Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.36 KB

File metadata and controls

33 lines (24 loc) · 1.36 KB

LegislationTextActionsList

list of legislation text actions

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[LegislationTextActionResponse] list of Legislation Text Actions [optional]

Example

from valis.models.legislation_text_actions_list import LegislationTextActionsList

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

# convert the object into a dict
legislation_text_actions_list_dict = legislation_text_actions_list_instance.to_dict()
# create an instance of LegislationTextActionsList from a dict
legislation_text_actions_list_from_dict = LegislationTextActionsList.from_dict(legislation_text_actions_list_dict)

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