Information about the originator of the transaction.
Name | Type | Description | Notes |
---|---|---|---|
originator_persons | List[TravelRuleValidatePerson] | Information about the originator of the transaction | [optional] |
beneficiary_persons | List[TravelRuleValidatePerson] | Information about the beneficiary of the transaction | [optional] |
account_number | List[str] | Beneficiary account number | [optional] |
from fireblocks.models.travel_rule_validate_pii_ivms import TravelRuleValidatePiiIVMS
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleValidatePiiIVMS from a JSON string
travel_rule_validate_pii_ivms_instance = TravelRuleValidatePiiIVMS.from_json(json)
# print the JSON string representation of the object
print(TravelRuleValidatePiiIVMS.to_json())
# convert the object into a dict
travel_rule_validate_pii_ivms_dict = travel_rule_validate_pii_ivms_instance.to_dict()
# create an instance of TravelRuleValidatePiiIVMS from a dict
travel_rule_validate_pii_ivms_from_dict = TravelRuleValidatePiiIVMS.from_dict(travel_rule_validate_pii_ivms_dict)