Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.12 KB

IdentifierPartSchema.md

File metadata and controls

33 lines (25 loc) · 1.12 KB

IdentifierPartSchema

Properties

Name Type Description Notes
index int
name str
display_name str
description str
required bool
links List[Link] [optional]

Example

from finbourne_access.models.identifier_part_schema import IdentifierPartSchema

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

# convert the object into a dict
identifier_part_schema_dict = identifier_part_schema_instance.to_dict()
# create an instance of IdentifierPartSchema from a dict
identifier_part_schema_form_dict = identifier_part_schema.from_dict(identifier_part_schema_dict)

Back to Model listBack to API listBack to README