Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

TravelRulePiiIVMS.md

File metadata and controls

32 lines (23 loc) · 1.33 KB

TravelRulePiiIVMS

Personal identifiable information related to the transaction

Properties

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]

Example

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)

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