Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb

Overview

The response from a ListQaQuestions request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse

Returns a new instance of GoogleCloudContactcenterinsightsV1ListQaQuestionsResponse.



3850
3851
3852
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3850

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3843
3844
3845
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3843

def next_page_token
  @next_page_token
end

#qa_questionsArray<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1QaQuestion>

The QaQuestions under the parent. Corresponds to the JSON property qaQuestions



3848
3849
3850
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3848

def qa_questions
  @qa_questions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3855
3856
3857
3858
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3855

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @qa_questions = args[:qa_questions] if args.key?(:qa_questions)
end