Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.2 KB

File metadata and controls

29 lines (20 loc) · 1.2 KB

CheckAddressValidity200Response

Properties

Name Type Description Notes
validity bool Whether the address is valid. - `true`: The address is valid. - `false`: The address is invalid.

Example

from cobo_waas2.models.check_address_validity200_response import CheckAddressValidity200Response

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

# convert the object into a dict
check_address_validity200_response_dict = check_address_validity200_response_instance.to_dict()
# create an instance of CheckAddressValidity200Response from a dict
check_address_validity200_response_from_dict = CheckAddressValidity200Response.from_dict(check_address_validity200_response_dict)

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