GetSwapDto
Last updated
Last updated
from moonsdk.models.get_swap_dto import GetSwapDto
# TODO update the JSON string below
json = "{}"
# create an instance of GetSwapDto from a JSON string
get_swap_dto_instance = GetSwapDto.from_json(json)
# print the JSON string representation of the object
print(GetSwapDto.to_json())
# convert the object into a dict
get_swap_dto_dict = get_swap_dto_instance.to_dict()
# create an instance of GetSwapDto from a dict
get_swap_dto_form_dict = get_swap_dto.from_dict(get_swap_dto_dict)