Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

TRLinkIvms

IVMS101 data structure containing encrypted PII

Properties

Name Type Description Notes
version str IVMS version
data str Encrypted IVMS101 data containing originator and beneficiary information
filled_fields List[str] List of fields that are filled in the IVMS data

Example

from fireblocks.models.tr_link_ivms import TRLinkIvms

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

# convert the object into a dict
tr_link_ivms_dict = tr_link_ivms_instance.to_dict()
# create an instance of TRLinkIvms from a dict
tr_link_ivms_from_dict = TRLinkIvms.from_dict(tr_link_ivms_dict)

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