Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1022 Bytes

ConvertAssetsResponse.md

File metadata and controls

29 lines (20 loc) · 1022 Bytes

ConvertAssetsResponse

Properties

Name Type Description Notes
success bool Indicates whether the conversion was successful

Example

from fireblocks.models.convert_assets_response import ConvertAssetsResponse

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

# convert the object into a dict
convert_assets_response_dict = convert_assets_response_instance.to_dict()
# create an instance of ConvertAssetsResponse from a dict
convert_assets_response_from_dict = ConvertAssetsResponse.from_dict(convert_assets_response_dict)

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