Class Error (1.5.0)

Error(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Represent a user-facing Error.

Attributes

NameDescription
reason str
A title that explains the reason for the error.
error_uuid str
A unique identifier for this specific error, allowing it to be traced throughout the system in logs and API responses.
message str
A message containing more information about the error that occurred.
error_time google.protobuf.timestamp_pb2.Timestamp
The time when the error occurred.
details MutableMapping[str, str]
Additional information about the error.

Classes

DetailsEntry

DetailsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.