Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

LegislationNumberResponse

Legislation Number Response

Properties

Name Type Description Notes
legislation_number str LegislationNumber [optional]

Example

from valis.models.legislation_number_response import LegislationNumberResponse

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

# convert the object into a dict
legislation_number_response_dict = legislation_number_response_instance.to_dict()
# create an instance of LegislationNumberResponse from a dict
legislation_number_response_from_dict = LegislationNumberResponse.from_dict(legislation_number_response_dict)

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