| Name | Type | Description | Notes |
|---|---|---|---|
| pubkey | str | The Cobo Guard's public key. | [optional] |
| status | GuardPubkeyStatus | [optional] | |
| addresses | List[QueryGuardPubkey200ResponseAddressesInner] | [optional] |
from cobo_waas2.models.query_guard_pubkey200_response import QueryGuardPubkey200Response
# TODO update the JSON string below
json = "{}"
# create an instance of QueryGuardPubkey200Response from a JSON string
query_guard_pubkey200_response_instance = QueryGuardPubkey200Response.from_json(json)
# print the JSON string representation of the object
print(QueryGuardPubkey200Response.to_json())
# convert the object into a dict
query_guard_pubkey200_response_dict = query_guard_pubkey200_response_instance.to_dict()
# create an instance of QueryGuardPubkey200Response from a dict
query_guard_pubkey200_response_from_dict = QueryGuardPubkey200Response.from_dict(query_guard_pubkey200_response_dict)