Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

ProjectCreateResponsePrompts

Properties

Name Type Description Notes
created int [optional]
skipped int [optional]
execution str [optional]

Example

from llmpulse.models.project_create_response_prompts import ProjectCreateResponsePrompts

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

# convert the object into a dict
project_create_response_prompts_dict = project_create_response_prompts_instance.to_dict()
# create an instance of ProjectCreateResponsePrompts from a dict
project_create_response_prompts_from_dict = ProjectCreateResponsePrompts.from_dict(project_create_response_prompts_dict)

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