Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

QueryGuardPubkey200Response

Properties

Name Type Description Notes
pubkey str The Cobo Guard's public key. [optional]
status GuardPubkeyStatus [optional]
addresses List[QueryGuardPubkey200ResponseAddressesInner] [optional]

Example

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)

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