AnswerValue

Message for holding the value of the answer. QaQuestion.AnswerChoice defines the possible answer values for a question.

JSON representation
{
  "key": string,
  "score": number,

  // Union field value can be only one of the following:
  "strValue": string,
  "numValue": number,
  "boolValue": boolean,
  "naValue": boolean
  // End of list of possible types for union field value.
}
Fields
key

string

A short string used as an identifier. Matches the value used in QaQuestion.AnswerChoice.key.

score

number

Numerical score of the answer.

Union field value. The answer value may be one of a few different types. value can be only one of the following:
strValue

string

String value.

numValue

number

Numerical value.

boolValue

boolean

Boolean value.

naValue

boolean

A value of "Not Applicable (N/A)".