class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog
Changelogs represents a change made to a given agent.
Attributes
The action of the change. Corresponds to the JSON property `action` @return [String]
The timestamp of the change. Corresponds to the JSON property `createTime` @return [String]
The affected resource display name of the change. Corresponds to the JSON property `displayName` @return [String]
The unique identifier of the changelog. Format: `projects//locations//agents// changelogs/`. Corresponds to the JSON property `name` @return [String]
The affected resource name of the change. Corresponds to the JSON property `resource` @return [String]
The affected resource type. Corresponds to the JSON property `type` @return [String]
Email address of the authenticated user. Corresponds to the JSON property `userEmail` @return [String]
Public Class Methods
# File lib/google/apis/dialogflow_v3/classes.rb, line 410 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 415 def update!(**args) @action = args[:action] if args.key?(:action) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @resource = args[:resource] if args.key?(:resource) @type = args[:type] if args.key?(:type) @user_email = args[:user_email] if args.key?(:user_email) end