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.
948 949 950 |
# File 'lib/google/apis/forms_v1/classes.rb', line 948 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
941 942 943 |
# File 'lib/google/apis/forms_v1/classes.rb', line 941 def next_page_token @next_page_token end |
#responses ⇒ Array<Google::Apis::FormsV1::FormResponse>
The returned responses.
Corresponds to the JSON property responses
946 947 948 |
# File 'lib/google/apis/forms_v1/classes.rb', line 946 def responses @responses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
953 954 955 956 |
# File 'lib/google/apis/forms_v1/classes.rb', line 953 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @responses = args[:responses] if args.key?(:responses) end |