Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListNotesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListNotesResponse
- 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 notes.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#notes ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note>
The notes that match the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListNotesResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListNotesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListNotesResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListNotesResponse.
7697 7698 7699 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7697 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
7690 7691 7692 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7690 def next_page_token @next_page_token end |
#notes ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note>
The notes that match the request.
Corresponds to the JSON property notes
7695 7696 7697 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7695 def notes @notes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7702 7703 7704 7705 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7702 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @notes = args[:notes] if args.key?(:notes) end |