Class ListFormResponsesResponse
Response to a ListFormResponsesRequest.
Implements
Inherited Members
Namespace: Google.Apis.Forms.v1.Data
Assembly: Google.Apis.Forms.v1.dll
Syntax
public class ListFormResponsesResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
If set, there are more responses. To get the next page of responses, provide this as page_token
in a
future request.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Responses
The returned form responses. Note: The formId
field is not returned in the FormResponse
object for list
requests.
Declaration
[JsonProperty("responses")]
public virtual IList<FormResponse> Responses { get; set; }
Property Value
Type | Description |
---|---|
IList<FormResponse> |