Name |
Type |
Description |
Notes |
is_valid |
bool |
|
[optional] |
is_active |
bool |
|
[optional] |
requires_tag |
bool |
|
[optional] |
from fireblocks.models.validate_address_response import ValidateAddressResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ValidateAddressResponse from a JSON string
validate_address_response_instance = ValidateAddressResponse.from_json(json)
# print the JSON string representation of the object
print(ValidateAddressResponse.to_json())
# convert the object into a dict
validate_address_response_dict = validate_address_response_instance.to_dict()
# create an instance of ValidateAddressResponse from a dict
validate_address_response_from_dict = ValidateAddressResponse.from_dict(validate_address_response_dict)
[Back to Model list] [Back to API list] [Back to README]