Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

LegislationTextHitCountWord

Properties

Name Type Description Notes
hitword str [optional]

Example

from valis.models.legislation_text_hit_count_word import LegislationTextHitCountWord

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

# convert the object into a dict
legislation_text_hit_count_word_dict = legislation_text_hit_count_word_instance.to_dict()
# create an instance of LegislationTextHitCountWord from a dict
legislation_text_hit_count_word_from_dict = LegislationTextHitCountWord.from_dict(legislation_text_hit_count_word_dict)

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