Deployment
Properties
Name |
Type |
Description |
Notes |
name |
str |
|
|
disclaimer |
str |
|
|
should_show_warning |
bool |
|
|
disable_kg_actions |
bool |
|
|
linked_ccs_api |
object |
|
|
Example
from deepsearch.cps.apis.public_v2.models.deployment import Deployment
# TODO update the JSON string below
json = "{}"
# create an instance of Deployment from a JSON string
deployment_instance = Deployment.from_json(json)
# print the JSON string representation of the object
print(Deployment.to_json())
# convert the object into a dict
deployment_dict = deployment_instance.to_dict()
# create an instance of Deployment from a dict
deployment_form_dict = deployment.from_dict(deployment_dict)
[Back to Model list] [Back to API list] [Back to README]