Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

File metadata and controls

32 lines (23 loc) · 1.37 KB

QueryApprovalStatement200Response

Properties

Name Type Description Notes
id str The approval statement ID. [optional]
user_id str The user ID of the approver. [optional]
pubkey str The Cobo Guard public key of the approver. [optional]
status ApprovalStatementStatus [optional]

Example

from cobo_waas2.models.query_approval_statement200_response import QueryApprovalStatement200Response

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

# convert the object into a dict
query_approval_statement200_response_dict = query_approval_statement200_response_instance.to_dict()
# create an instance of QueryApprovalStatement200Response from a dict
query_approval_statement200_response_from_dict = QueryApprovalStatement200Response.from_dict(query_approval_statement200_response_dict)

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