Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1016 Bytes

File metadata and controls

31 lines (22 loc) · 1016 Bytes

QueryCoverageOutput

Properties

Name Type Description Notes
query str
is_covered bool
similarity float

Example

from wordlift_client.models.query_coverage_output import QueryCoverageOutput

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

# convert the object into a dict
query_coverage_output_dict = query_coverage_output_instance.to_dict()
# create an instance of QueryCoverageOutput from a dict
query_coverage_output_from_dict = QueryCoverageOutput.from_dict(query_coverage_output_dict)

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