Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Changelog

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

Overview

Changelogs represents a change made to a given agent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Changelog

Returns a new instance of GoogleCloudDialogflowCxV3Changelog.



428
429
430
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 428

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

Instance Attribute Details

#actionString

The action of the change. Corresponds to the JSON property action

Returns:

  • (String)


395
396
397
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 395

def action
  @action
end

#create_timeString

The timestamp of the change. Corresponds to the JSON property createTime

Returns:

  • (String)


400
401
402
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 400

def create_time
  @create_time
end

#display_nameString

The affected resource display name of the change. Corresponds to the JSON property displayName

Returns:

  • (String)


405
406
407
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 405

def display_name
  @display_name
end

#nameString

The unique identifier of the changelog. Format: projects//locations//agents// changelogs/. Corresponds to the JSON property name

Returns:

  • (String)


411
412
413
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 411

def name
  @name
end

#resourceString

The affected resource name of the change. Corresponds to the JSON property resource

Returns:

  • (String)


416
417
418
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 416

def resource
  @resource
end

#typeString

The affected resource type. Corresponds to the JSON property type

Returns:

  • (String)


421
422
423
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 421

def type
  @type
end

#user_emailString

Email address of the authenticated user. Corresponds to the JSON property userEmail

Returns:

  • (String)


426
427
428
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 426

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



433
434
435
436
437
438
439
440
441
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 433

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