| Name |
Type |
Description |
Notes |
| project_id |
int |
|
|
| brand_name |
str |
|
[optional] |
| matching_names |
List[str] |
|
[optional] |
| color |
str |
Hex color, e.g. #1a2b3c |
[optional] |
from llmpulse.models.update_competitor_request import UpdateCompetitorRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateCompetitorRequest from a JSON string
update_competitor_request_instance = UpdateCompetitorRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateCompetitorRequest.to_json())
# convert the object into a dict
update_competitor_request_dict = update_competitor_request_instance.to_dict()
# create an instance of UpdateCompetitorRequest from a dict
update_competitor_request_from_dict = UpdateCompetitorRequest.from_dict(update_competitor_request_dict)
[Back to Model list] [Back to API list] [Back to README]