Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

File metadata and controls

36 lines (27 loc) · 1.25 KB

TopSourcesResponse

Properties

Name Type Description Notes
project_id int [optional]
var_from datetime [optional]
to datetime [optional]
sort str [optional]
page int [optional]
per_page int [optional]
total int [optional]
data List[TopSourcesResponseDataInner] [optional]

Example

from llmpulse.models.top_sources_response import TopSourcesResponse

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

# convert the object into a dict
top_sources_response_dict = top_sources_response_instance.to_dict()
# create an instance of TopSourcesResponse from a dict
top_sources_response_from_dict = TopSourcesResponse.from_dict(top_sources_response_dict)

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