Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
- 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 of listing phrase matchers.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#phrase_matchers ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatcher>
The phrase matchers that match the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse.
3027 3028 3029 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3027 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
3020 3021 3022 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3020 def next_page_token @next_page_token end |
#phrase_matchers ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatcher>
The phrase matchers that match the request.
Corresponds to the JSON property phraseMatchers
3025 3026 3027 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3025 def phrase_matchers @phrase_matchers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3032 3033 3034 3035 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3032 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers) end |