Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

TravelRuleUpdateVASPDetails.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

TravelRuleUpdateVASPDetails

Properties

Name Type Description Notes
did str The decentralized identifier of the VASP
pii_didkey str The PII DID key of the VASP

Example

from fireblocks.models.travel_rule_update_vasp_details import TravelRuleUpdateVASPDetails

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

# convert the object into a dict
travel_rule_update_vasp_details_dict = travel_rule_update_vasp_details_instance.to_dict()
# create an instance of TravelRuleUpdateVASPDetails from a dict
travel_rule_update_vasp_details_from_dict = TravelRuleUpdateVASPDetails.from_dict(travel_rule_update_vasp_details_dict)

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