| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] | |
| id | int | [optional] | |
| competitor_id | int | [optional] | |
| name | str | [optional] | |
| domain | str | Bare (scheme-less) domain | [optional] |
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)