Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.46 KB

File metadata and controls

30 lines (21 loc) · 1.46 KB

CheckAddressChainsValidity200ResponseInner

Properties

Name Type Description Notes
chain_id str The chain ID, which is the unique identifier of a blockchain.
validity bool Whether the address is valid for the specified chain. - `true`: The address is valid. - `false`: The address is invalid.

Example

from cobo_waas2.models.check_address_chains_validity200_response_inner import CheckAddressChainsValidity200ResponseInner

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

# convert the object into a dict
check_address_chains_validity200_response_inner_dict = check_address_chains_validity200_response_inner_instance.to_dict()
# create an instance of CheckAddressChainsValidity200ResponseInner from a dict
check_address_chains_validity200_response_inner_from_dict = CheckAddressChainsValidity200ResponseInner.from_dict(check_address_chains_validity200_response_inner_dict)

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