Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

GetOpportunitiesResponse

Properties

Name Type Description Notes
data List[Opportunity] Page of lending opportunities for this query.
next str Opaque cursor for the next page; empty when there is no next page. [optional]
prev str Opaque cursor for the previous page; empty when there is no previous page. [optional]
total int Total number of items matching the query.

Example

from fireblocks.models.get_opportunities_response import GetOpportunitiesResponse

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

# convert the object into a dict
get_opportunities_response_dict = get_opportunities_response_instance.to_dict()
# create an instance of GetOpportunitiesResponse from a dict
get_opportunities_response_from_dict = GetOpportunitiesResponse.from_dict(get_opportunities_response_dict)

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