Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 931 Bytes

RpcStatus.md

File metadata and controls

30 lines (22 loc) · 931 Bytes

RpcStatus

Properties

Name Type Description Notes
code int [optional]
message str [optional]
details List[ProtobufAny] [optional]

Example

from frontier_api.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_form_dict = rpc_status.from_dict(rpc_status_dict)

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