class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EnvironmentHistory

The response message for Environments.GetEnvironmentHistory.

Attributes

entries[RW]

Output only. 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 `entries` @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EnvironmentHistoryEntry>]

next_page_token[RW]

Output only. 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` @return [String]

parent[RW]

Output only. The name of the environment this history is for. Supported formats: - `projects//agent/environments/` - `projects//locations//agent/ environments/` Corresponds to the JSON property `parent` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 9292
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 9297
def update!(**args)
  @entries = args[:entries] if args.key?(:entries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @parent = args[:parent] if args.key?(:parent)
end