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