Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListEnvironmentsResponse

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

Overview

The response message for Environments.ListEnvironments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListEnvironmentsResponse

Returns a new instance of GoogleCloudDialogflowV2beta1ListEnvironmentsResponse.



16072
16073
16074
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16072

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

Instance Attribute Details

#environmentsArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Environment>

The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request. Corresponds to the JSON property environments



16064
16065
16066
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16064

def environments
  @environments
end

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


16070
16071
16072
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16070

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16077
16078
16079
16080
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 16077

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