Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

TravelRuleGetAllVASPsResponse.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

TravelRuleGetAllVASPsResponse

Properties

Name Type Description Notes
vasps List[TravelRuleVASP]

Example

from fireblocks.models.travel_rule_get_all_vasps_response import TravelRuleGetAllVASPsResponse

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

# convert the object into a dict
travel_rule_get_all_vasps_response_dict = travel_rule_get_all_vasps_response_instance.to_dict()
# create an instance of TravelRuleGetAllVASPsResponse from a dict
travel_rule_get_all_vasps_response_from_dict = TravelRuleGetAllVASPsResponse.from_dict(travel_rule_get_all_vasps_response_dict)

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