Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

ElectionSpecification.md

File metadata and controls

30 lines (22 loc) · 1.04 KB

ElectionSpecification

Properties

Name Type Description Notes
election_type str
cardinality Dict[str, str]
referenced_as List[str]

Example

from lusid.models.election_specification import ElectionSpecification

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

# convert the object into a dict
election_specification_dict = election_specification_instance.to_dict()
# create an instance of ElectionSpecification from a dict
election_specification_form_dict = election_specification.from_dict(election_specification_dict)

Back to Model listBack to API listBack to README