Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Changelog

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

Overview

Changelogs represents a change made to a given agent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Changelog

Returns a new instance of GoogleCloudDialogflowCxV3beta1Changelog.



4723
4724
4725
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4723

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

Instance Attribute Details

#actionString

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

Returns:

  • (String)


4685
4686
4687
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4685

def action
  @action
end

#create_timeString

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

Returns:

  • (String)


4690
4691
4692
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4690

def create_time
  @create_time
end

#display_nameString

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

Returns:

  • (String)


4695
4696
4697
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4695

def display_name
  @display_name
end

#language_codeString

The affected language code of the change. Corresponds to the JSON property languageCode

Returns:

  • (String)


4700
4701
4702
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4700

def language_code
  @language_code
end

#nameString

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

Returns:

  • (String)


4706
4707
4708
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4706

def name
  @name
end

#resourceString

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

Returns:

  • (String)


4711
4712
4713
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4711

def resource
  @resource
end

#typeString

The affected resource type. Corresponds to the JSON property type

Returns:

  • (String)


4716
4717
4718
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4716

def type
  @type
end

#user_emailString

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

Returns:

  • (String)


4721
4722
4723
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4721

def user_email
  @user_email
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4728

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)
  @language_code = args[:language_code] if args.key?(:language_code)
  @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