ErrorDescription

Describes violations in a client request. This error type focuses on the error messages and their translations

JSON representation
{
  "traceId": string,
  "errorMessages": [
    {
      object (ErrorMessage)
    }
  ]
}
Fields
traceId

string

trace id of the failing request, which can be used for debugging later.

errorMessages[]

object (ErrorMessage)

List of error messages to be shown to user

ErrorMessage

Error message along with translation if present.

JSON representation
{
  "errorMessage": string,
  "translatedErrorMessage": string
}
Fields
errorMessage

string

A error message to be shown to the user

translatedErrorMessage

string

A translated error message to be shown to the user. If no translation language is specified, it will be same as error message.