Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

TRLinkVaspNationalIdentification

Properties

Name Type Description Notes
identifier str National identification number
type str Type of national identification [optional]
authority str Issuing authority [optional]

Example

from fireblocks.models.tr_link_vasp_national_identification import TRLinkVaspNationalIdentification

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

# convert the object into a dict
tr_link_vasp_national_identification_dict = tr_link_vasp_national_identification_instance.to_dict()
# create an instance of TRLinkVaspNationalIdentification from a dict
tr_link_vasp_national_identification_from_dict = TRLinkVaspNationalIdentification.from_dict(tr_link_vasp_national_identification_dict)

[Back to Model list] [Back to API list] [Back to README]