Class: Google::Apis::FormsV1::ListFormResponsesResponse
- Inherits:
-
Object
- Object
- Google::Apis::FormsV1::ListFormResponsesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/forms_v1/classes.rb,
lib/google/apis/forms_v1/representations.rb,
lib/google/apis/forms_v1/representations.rb
Overview
Response to a ListFormResponsesRequest.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If set, there are more responses.
-
#responses ⇒ Array<Google::Apis::FormsV1::FormResponse>
The returned responses.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListFormResponsesResponse
constructor
A new instance of ListFormResponsesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListFormResponsesResponse
Returns a new instance of ListFormResponsesResponse.
949 950 951 |
# File 'lib/google/apis/forms_v1/classes.rb', line 949 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If set, there are more responses. To get the next page of responses, provide
this as page_token in a future request.
Corresponds to the JSON property nextPageToken
942 943 944 |
# File 'lib/google/apis/forms_v1/classes.rb', line 942 def next_page_token @next_page_token end |
#responses ⇒ Array<Google::Apis::FormsV1::FormResponse>
The returned responses.
Corresponds to the JSON property responses
947 948 949 |
# File 'lib/google/apis/forms_v1/classes.rb', line 947 def responses @responses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
954 955 956 957 |
# File 'lib/google/apis/forms_v1/classes.rb', line 954 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @responses = args[:responses] if args.key?(:responses) end |