Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

Competitor

Properties

Name Type Description Notes
id int [optional]
name str [optional]
domain str [optional]
actor_type str Only present when include_project_brand=true [optional]
is_own bool Only present when include_project_brand=true [optional]

Example

from llmpulse.models.competitor import Competitor

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

# convert the object into a dict
competitor_dict = competitor_instance.to_dict()
# create an instance of Competitor from a dict
competitor_from_dict = Competitor.from_dict(competitor_dict)

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