The mapping of a LUSID Property from the Vendor Field that would populate it
Name | Type | Description | Notes |
---|---|---|---|
var_property | LusidPropertyDefinition | ||
vendor_field | str | ||
vendor_package | str | ||
vendor_namespace | str | ||
optionality | Optionality |
from finbourne_horizon.models.lusid_property_to_vendor_field_mapping import LusidPropertyToVendorFieldMapping
# TODO update the JSON string below
json = "{}"
# create an instance of LusidPropertyToVendorFieldMapping from a JSON string
lusid_property_to_vendor_field_mapping_instance = LusidPropertyToVendorFieldMapping.from_json(json)
# print the JSON string representation of the object
print LusidPropertyToVendorFieldMapping.to_json()
# convert the object into a dict
lusid_property_to_vendor_field_mapping_dict = lusid_property_to_vendor_field_mapping_instance.to_dict()
# create an instance of LusidPropertyToVendorFieldMapping from a dict
lusid_property_to_vendor_field_mapping_form_dict = lusid_property_to_vendor_field_mapping.from_dict(lusid_property_to_vendor_field_mapping_dict)