Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

ViewExtendedAggregatedPricePagedResult.md

File metadata and controls

31 lines (22 loc) · 1.35 KB

ViewExtendedAggregatedPricePagedResult

Properties

Name Type Description Notes
items List[ViewExtendedAggregatedPrice] [optional] [readonly]
page int [optional]
total_items int [optional]

Example

from data_bridges_client.models.view_extended_aggregated_price_paged_result import ViewExtendedAggregatedPricePagedResult

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

# convert the object into a dict
view_extended_aggregated_price_paged_result_dict = view_extended_aggregated_price_paged_result_instance.to_dict()
# create an instance of ViewExtendedAggregatedPricePagedResult from a dict
view_extended_aggregated_price_paged_result_from_dict = ViewExtendedAggregatedPricePagedResult.from_dict(view_extended_aggregated_price_paged_result_dict)

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