class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EnvironmentHistoryEntry
Represents an environment history entry.
Attributes
agent_version[RW]
The agent version loaded into this environment history entry. Corresponds to the JSON property `agentVersion` @return [String]
create_time[RW]
The creation time of this environment history entry. Corresponds to the JSON property `createTime` @return [String]
description[RW]
The developer-provided description for this environment history entry. Corresponds to the JSON property `description` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 9323 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 9328 def update!(**args) @agent_version = args[:agent_version] if args.key?(:agent_version) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) end