Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Changelog
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Changelog
- 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
-
#action ⇒ String
The action of the change.
-
#create_time ⇒ String
The timestamp of the change.
-
#display_name ⇒ String
The affected resource display name of the change.
-
#language_code ⇒ String
The affected language code of the change.
-
#name ⇒ String
The unique identifier of the changelog.
-
#resource ⇒ String
The affected resource name of the change.
-
#type ⇒ String
The affected resource type.
-
#user_email ⇒ String
Email address of the authenticated user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Changelog
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Changelog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Changelog
Returns a new instance of GoogleCloudDialogflowCxV3beta1Changelog.
5440 5441 5442 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5440 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The action of the change.
Corresponds to the JSON property action
5402 5403 5404 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5402 def action @action end |
#create_time ⇒ String
The timestamp of the change.
Corresponds to the JSON property createTime
5407 5408 5409 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5407 def create_time @create_time end |
#display_name ⇒ String
The affected resource display name of the change.
Corresponds to the JSON property displayName
5412 5413 5414 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5412 def display_name @display_name end |
#language_code ⇒ String
The affected language code of the change.
Corresponds to the JSON property languageCode
5417 5418 5419 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5417 def language_code @language_code end |
#name ⇒ String
The unique identifier of the changelog. Format: projects//locations//agents//
changelogs/.
Corresponds to the JSON property name
5423 5424 5425 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5423 def name @name end |
#resource ⇒ String
The affected resource name of the change.
Corresponds to the JSON property resource
5428 5429 5430 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5428 def resource @resource end |
#type ⇒ String
The affected resource type.
Corresponds to the JSON property type
5433 5434 5435 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5433 def type @type end |
#user_email ⇒ String
Email address of the authenticated user.
Corresponds to the JSON property userEmail
5438 5439 5440 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5438 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5445 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 |