Name |
Type |
Description |
Notes |
issuer_did |
str |
|
|
from fireblocks.models.travel_rule_issuer import TravelRuleIssuer
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleIssuer from a JSON string
travel_rule_issuer_instance = TravelRuleIssuer.from_json(json)
# print the JSON string representation of the object
print(TravelRuleIssuer.to_json())
# convert the object into a dict
travel_rule_issuer_dict = travel_rule_issuer_instance.to_dict()
# create an instance of TravelRuleIssuer from a dict
travel_rule_issuer_from_dict = TravelRuleIssuer.from_dict(travel_rule_issuer_dict)
[Back to Model list] [Back to API list] [Back to README]