Class: Google::Apis::FormsV1::ListFormResponsesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


941
942
943
# File 'lib/google/apis/forms_v1/classes.rb', line 941

def next_page_token
  @next_page_token
end

#responsesArray<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