Name | Type | Description | Notes |
---|---|---|---|
vasps | List[TravelRuleVASP] |
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)