Acquisition¶
Information on how the data was obtained.
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
type | str | The method to obtain the data. | |
var_date | ModelDate | [optional] | |
link | Link | [optional] | |
size | Size | [optional] |
Example¶
from deepsearch.cps.apis.public_v2.models.acquisition import Acquisition
# TODO update the JSON string below
json = "{}"
# create an instance of Acquisition from a JSON string
acquisition_instance = Acquisition.from_json(json)
# print the JSON string representation of the object
print(Acquisition.to_json())
# convert the object into a dict
acquisition_dict = acquisition_instance.to_dict()
# create an instance of Acquisition from a dict
acquisition_form_dict = acquisition.from_dict(acquisition_dict)