| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | [optional] | |
| details | List[ProtobufAny] | [optional] | |
| message | str | [optional] |
from kenar_api_client.models.googlerpc_status import GooglerpcStatus
# TODO update the JSON string below
json = "{}"
# create an instance of GooglerpcStatus from a JSON string
googlerpc_status_instance = GooglerpcStatus.from_json(json)
# print the JSON string representation of the object
print(GooglerpcStatus.to_json())
# convert the object into a dict
googlerpc_status_dict = googlerpc_status_instance.to_dict()
# create an instance of GooglerpcStatus from a dict
googlerpc_status_from_dict = GooglerpcStatus.from_dict(googlerpc_status_dict)