Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

ValidateAddressResponse.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

ValidateAddressResponse

validateAddressResponse is the non error response of an address validation request

Properties

Name Type Description Notes
success bool [optional]

Example

from luno_openapi.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]