Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListDocumentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListDocumentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#documents ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Document>
Corresponds to the JSON property
documents. -
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListDocumentsResponse
constructor
A new instance of GoogleCloudDialogflowV2ListDocumentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListDocumentsResponse
Returns a new instance of GoogleCloudDialogflowV2ListDocumentsResponse.
13842 13843 13844 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13842 def initialize(**args) update!(**args) end |
Instance Attribute Details
#documents ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Document>
Corresponds to the JSON property documents
13835 13836 13837 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13835 def documents @documents end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
13840 13841 13842 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13840 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13847 13848 13849 13850 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13847 def update!(**args) @documents = args[:documents] if args.key?(:documents) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |