RpcStatus

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
codeint[optional]
messagestr[optional]
detailsList[ProtobufAny][optional]

Example

from ncbi.datasets.openapi.models.rpc_status import RpcStatus

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

# convert the object into a dict
rpc_status_dict = rpc_status_instance.to_dict()
# create an instance of RpcStatus from a dict
rpc_status_from_dict = RpcStatus.from_dict(rpc_status_dict)

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