Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

ValidateAddressResponse.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

ValidateAddressResponse

Properties

Name Type Description Notes
is_valid bool [optional]
is_active bool [optional]
requires_tag bool [optional]

Example

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]