Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.3 KB

ResourceListOfAggregationQuery.md

File metadata and controls

32 lines (24 loc) · 1.3 KB

ResourceListOfAggregationQuery

Properties

Name Type Description Notes
values List[AggregationQuery]
href str [optional]
links List[Link] [optional]
next_page str [optional]
previous_page str [optional]

Example

from lusid.models.resource_list_of_aggregation_query import ResourceListOfAggregationQuery

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

# convert the object into a dict
resource_list_of_aggregation_query_dict = resource_list_of_aggregation_query_instance.to_dict()
# create an instance of ResourceListOfAggregationQuery from a dict
resource_list_of_aggregation_query_form_dict = resource_list_of_aggregation_query.from_dict(resource_list_of_aggregation_query_dict)

Back to Model listBack to API listBack to README