Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 938 Bytes

File metadata and controls

33 lines (24 loc) · 938 Bytes

Actor

Properties

Name Type Description Notes
type str [optional]
id int [optional]
competitor_id int [optional]
name str [optional]
domain str Bare (scheme-less) domain [optional]

Example

from llmpulse.models.actor import Actor

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

# convert the object into a dict
actor_dict = actor_instance.to_dict()
# create an instance of Actor from a dict
actor_from_dict = Actor.from_dict(actor_dict)

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