A list of portfolios.
Name | Type | Description | Notes |
---|---|---|---|
id | ResourceId | ||
type | str | The type of the portfolio. The available values are: Transaction, Reference, DerivedTransaction, SimplePosition | |
href | str | The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime. | [optional] |
description | str | The long form description of the portfolio. | [optional] |
display_name | str | The name of the portfolio. | |
is_derived | bool | Whether or not this is a derived portfolio. | [optional] [readonly] |
created | datetime | The effective datetime at which the portfolio was created. No transactions or constituents can be added to the portfolio before this date. | |
parent_portfolio_id | ResourceId | [optional] | |
base_currency | str | The base currency of the portfolio. | [optional] |
properties | List[ModelProperty] | The requested portfolio properties. These will be from the 'Portfolio' domain. | [optional] |
links | List[Link] | [optional] |
from lusid.models.portfolio_search_result import PortfolioSearchResult
# TODO update the JSON string below
json = "{}"
# create an instance of PortfolioSearchResult from a JSON string
portfolio_search_result_instance = PortfolioSearchResult.from_json(json)
# print the JSON string representation of the object
print PortfolioSearchResult.to_json()
# convert the object into a dict
portfolio_search_result_dict = portfolio_search_result_instance.to_dict()
# create an instance of PortfolioSearchResult from a dict
portfolio_search_result_form_dict = portfolio_search_result.from_dict(portfolio_search_result_dict)