Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 856 Bytes

BidsResponse.md

File metadata and controls

28 lines (20 loc) · 856 Bytes

BidsResponse

Properties

Name Type Description Notes
bids object

Example

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)

[Back to Model list] [Back to API list] [Back to README]