Name | Type | Description | Notes |
---|---|---|---|
bids | object |
from aim_platform_sdk.models.bids_response import BidsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BidsResponse from a JSON string
bids_response_instance = BidsResponse.from_json(json)
# print the JSON string representation of the object
print BidsResponse.to_json()
# convert the object into a dict
bids_response_dict = bids_response_instance.to_dict()
# create an instance of BidsResponse from a dict
bids_response_form_dict = bids_response.from_dict(bids_response_dict)