class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog

Changelogs represents a change made to a given agent.

Attributes

action[RW]

The action of the change. Corresponds to the JSON property `action` @return [String]

create_time[RW]

The timestamp of the change. Corresponds to the JSON property `createTime` @return [String]

display_name[RW]

The affected resource display name of the change. Corresponds to the JSON property `displayName` @return [String]

name[RW]

The unique identifier of the changelog. Format: `projects//locations//agents// changelogs/`. Corresponds to the JSON property `name` @return [String]

resource[RW]

The affected resource name of the change. Corresponds to the JSON property `resource` @return [String]

type[RW]

The affected resource type. Corresponds to the JSON property `type` @return [String]

user_email[RW]

Email address of the authenticated user. Corresponds to the JSON property `userEmail` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 410
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_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