| Name | Type | Description | Notes |
|---|---|---|---|
| project | object | Same shape as GET /dimensions/projects/{id} | [optional] |
| prompts | ProjectCreateResponsePrompts | [optional] | |
| competitors | ProjectCreateResponseCompetitors | [optional] | |
| email_subscription | ProjectCreateResponseEmailSubscription | [optional] | |
| limits | ProjectCreateResponseLimits | [optional] | |
| idempotent | bool | Present and true only on external_identifier replays | [optional] |
| request_id | str | [optional] |
from llmpulse.models.project_create_response import ProjectCreateResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectCreateResponse from a JSON string
project_create_response_instance = ProjectCreateResponse.from_json(json)
# print the JSON string representation of the object
print(ProjectCreateResponse.to_json())
# convert the object into a dict
project_create_response_dict = project_create_response_instance.to_dict()
# create an instance of ProjectCreateResponse from a dict
project_create_response_from_dict = ProjectCreateResponse.from_dict(project_create_response_dict)