type BadRequestError struct {
// Human readable description of error. Message string `json:"message,omitempty"`
// An array of violation messages. Violations []*Error `json:"violations,omitempty"`
}
type Error struct {
/*
Error code that maps to an error message. Developers with different locales should be able to lookup the error description based on this code.
*/
Code string `json:"code,omitempty"`
// Readable description of error. Message string `json:"message,omitempty"`
}