You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Represents the specific address that will be checked if it's valid or not.
Example
fromcryptoapis.models.validate_address_rb_data_itemimportValidateAddressRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of ValidateAddressRBDataItem from a JSON stringvalidate_address_rb_data_item_instance=ValidateAddressRBDataItem.from_json(json)
# print the JSON string representation of the objectprintValidateAddressRBDataItem.to_json()
# convert the object into a dictvalidate_address_rb_data_item_dict=validate_address_rb_data_item_instance.to_dict()
# create an instance of ValidateAddressRBDataItem from a dictvalidate_address_rb_data_item_form_dict=validate_address_rb_data_item.from_dict(validate_address_rb_data_item_dict)