Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1017 Bytes

File metadata and controls

31 lines (22 loc) · 1017 Bytes

CreatePromptRequest

Properties

Name Type Description Notes
name str
description str [optional]
slug str [optional]

Example

from px0.models.create_prompt_request import CreatePromptRequest

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

# convert the object into a dict
create_prompt_request_dict = create_prompt_request_instance.to_dict()
# create an instance of CreatePromptRequest from a dict
create_prompt_request_from_dict = CreatePromptRequest.from_dict(create_prompt_request_dict)

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