Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

TopSourcesResponseDataInner

Properties

Name Type Description Notes
domain str [optional]
total_responses int [optional]
avg_visibility float [optional]
avg_mention_rate float [optional]

Example

from llmpulse.models.top_sources_response_data_inner import TopSourcesResponseDataInner

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

# convert the object into a dict
top_sources_response_data_inner_dict = top_sources_response_data_inner_instance.to_dict()
# create an instance of TopSourcesResponseDataInner from a dict
top_sources_response_data_inner_from_dict = TopSourcesResponseDataInner.from_dict(top_sources_response_data_inner_dict)

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