Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.18 KB

AdjustHolding.md

File metadata and controls

31 lines (23 loc) · 1.18 KB

AdjustHolding

Properties

Name Type Description Notes
href str The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime. [optional]
version Version
metadata Dict[str, List[ResponseMetaData]] Contains warnings related to unresolved instruments [optional]
links List[Link] [optional]

Example

from lusid.models.adjust_holding import AdjustHolding

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

# convert the object into a dict
adjust_holding_dict = adjust_holding_instance.to_dict()
# create an instance of AdjustHolding from a dict
adjust_holding_form_dict = adjust_holding.from_dict(adjust_holding_dict)

Back to Model listBack to API listBack to README