Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListIntentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListIntentsResponse
- 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
-
#intents ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Intent>
Corresponds to the JSON property
intents. -
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListIntentsResponse
constructor
A new instance of GoogleCloudDialogflowV2ListIntentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListIntentsResponse
Returns a new instance of GoogleCloudDialogflowV2ListIntentsResponse.
14010 14011 14012 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14010 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intents ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Intent>
Corresponds to the JSON property intents
14003 14004 14005 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14003 def intents @intents end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
14008 14009 14010 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14008 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14015 14016 14017 14018 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14015 def update!(**args) @intents = args[:intents] if args.key?(:intents) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |