Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.02 KB

StringList.md

File metadata and controls

29 lines (21 loc) · 1.02 KB

StringList

Properties

Name Type Description Notes
values List[str]
reference_list_type str The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList, FundIdList

Example

from lusid.models.string_list import StringList

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

# convert the object into a dict
string_list_dict = string_list_instance.to_dict()
# create an instance of StringList from a dict
string_list_form_dict = string_list.from_dict(string_list_dict)

Back to Model listBack to API listBack to README