REST Resource: accounts.locations.questions

Resource: Question

Represents a single question and some of its answers.

JSON representation
{
  "name": string,
  "author": {
    object (Author)
  },
  "upvoteCount": integer,
  "text": string,
  "createTime": string,
  "updateTime": string,
  "topAnswers": [
    {
      object (Answer)
    }
  ],
  "totalAnswerCount": integer
}
Fields
name

string

Output only. The unique name for the question. accounts/*/locations/*/questions/*

author

object (Author)

Output only. The author of the question.

upvoteCount

integer

Output only. The number of upvotes for the question.

text

string

The text of the question. It should contain at least three words and the total length should be greater than or equal to 10 characters. The maximum length is 4096 characters.

createTime

string (Timestamp format)

Output only. The timestamp for when the question was written.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The timestamp for when the question was last modified.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

topAnswers[]

object (Answer)

Output only. A list of answers to the question, sorted by upvotes. This may not be a complete list of answers depending on the request parameters (answersPerQuestion)

totalAnswerCount

integer

Output only. The total number of answers posted for this question.

Methods

create

Adds a question for the specified location.

delete

Deletes a specific question written by the current user.

list

Returns the paginated list of questions and some of its answers for a specified location.

patch

Updates a specific question written by the current user.