Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

OffersResponse

Properties

Name Type Description Notes
offers List[Offer] List of offers returned for the requested asset pair.
errors List[ScopeItemFailure] Partial failures encountered while requesting offers. Empty when all offer requests succeed.

Example

from fireblocks.models.offers_response import OffersResponse

# TODO update the JSON string below
json = "{}"
# create an instance of OffersResponse from a JSON string
offers_response_instance = OffersResponse.from_json(json)
# print the JSON string representation of the object
print(OffersResponse.to_json())

# convert the object into a dict
offers_response_dict = offers_response_instance.to_dict()
# create an instance of OffersResponse from a dict
offers_response_from_dict = OffersResponse.from_dict(offers_response_dict)

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