Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

CreateRagDeploymentResponse

Properties

Name Type Description Notes
id int
created_at datetime
endpoint_url str

Example

from platform_api_python_client.models.create_rag_deployment_response import CreateRagDeploymentResponse

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

# convert the object into a dict
create_rag_deployment_response_dict = create_rag_deployment_response_instance.to_dict()
# create an instance of CreateRagDeploymentResponse from a dict
create_rag_deployment_response_from_dict = CreateRagDeploymentResponse.from_dict(create_rag_deployment_response_dict)

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