Personal identifiable information related to the transaction
Name | Type | Description | Notes |
---|---|---|---|
originator_persons | List[TravelRulePerson] | Information about the originator of the transaction | [optional] |
beneficiary_persons | List[TravelRulePerson] | Information about the beneficiary of the transaction | [optional] |
account_number | List[str] | Beneficiary account number. The value must be encrypted. | [optional] |
from fireblocks.models.travel_rule_pii_ivms import TravelRulePiiIVMS
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRulePiiIVMS from a JSON string
travel_rule_pii_ivms_instance = TravelRulePiiIVMS.from_json(json)
# print the JSON string representation of the object
print(TravelRulePiiIVMS.to_json())
# convert the object into a dict
travel_rule_pii_ivms_dict = travel_rule_pii_ivms_instance.to_dict()
# create an instance of TravelRulePiiIVMS from a dict
travel_rule_pii_ivms_from_dict = TravelRulePiiIVMS.from_dict(travel_rule_pii_ivms_dict)