Class QuestionGroupItem
Defines a question that comprises multiple questions grouped together.
Implements
Inherited Members
Namespace: Google.Apis.Forms.v1.Data
Assembly: Google.Apis.Forms.v1.dll
Syntax
public class QuestionGroupItem : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Grid
The question group is a grid with rows of multiple choice questions that share the same options. When grid
is set, all questions in the group must be of kind row
.
Declaration
[JsonProperty("grid")]
public virtual Grid Grid { get; set; }
Property Value
Type | Description |
---|---|
Grid |
Image
The image displayed within the question group above the specific questions.
Declaration
[JsonProperty("image")]
public virtual Image Image { get; set; }
Property Value
Type | Description |
---|---|
Image |
Questions
Required. A list of questions that belong in this question group. A question must only belong to one group.
The kind
of the group may affect what types of questions are allowed.
Declaration
[JsonProperty("questions")]
public virtual IList<Question> Questions { get; set; }
Property Value
Type | Description |
---|---|
IList<Question> |