Params
Properties
Name |
Type |
Description |
Notes |
|
|
|
|
Example
from deepsearch.cps.apis.public_v2.models.params import Params
# TODO update the JSON string below
json = "{}"
# create an instance of Params from a JSON string
params_instance = Params.from_json(json)
# print the JSON string representation of the object
print(Params.to_json())
# convert the object into a dict
params_dict = params_instance.to_dict()
# create an instance of Params from a dict
params_form_dict = params.from_dict(params_dict)
[Back to Model list] [Back to API list] [Back to README]