Class ListQuestionsResponse
Response message for QuestionsAndAnswers.ListQuestions
Implements
Inherited Members
Namespace: Google.Apis.MyBusinessQA.v1.Data
Assembly: Google.Apis.MyBusinessQA.v1.dll
Syntax
public class ListQuestionsResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
If the number of questions exceeds the requested max page size, this field is populated with a token to fetch the next page of questions on a subsequent call. If there are no more questions, this field is not present in the response.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Questions
The requested questions,
Declaration
[JsonProperty("questions")]
public virtual IList<Question> Questions { get; set; }
Property Value
Type | Description |
---|---|
IList<Question> |
TotalSize
The total number of questions posted for this location across all pages.
Declaration
[JsonProperty("totalSize")]
public virtual int? TotalSize { get; set; }
Property Value
Type | Description |
---|---|
int? |