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.
-
#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.
4375 4376 4377 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4375 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The action of the change.
Corresponds to the JSON property action
4342 4343 4344 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4342 def action @action end |
#create_time ⇒ String
The timestamp of the change.
Corresponds to the JSON property createTime
4347 4348 4349 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4347 def create_time @create_time end |
#display_name ⇒ String
The affected resource display name of the change.
Corresponds to the JSON property displayName
4352 4353 4354 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4352 def display_name @display_name end |
#name ⇒ String
The unique identifier of the changelog. Format: projects//locations//agents//
changelogs/.
Corresponds to the JSON property name
4358 4359 4360 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4358 def name @name end |
#resource ⇒ String
The affected resource name of the change.
Corresponds to the JSON property resource
4363 4364 4365 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4363 def resource @resource end |
#type ⇒ String
The affected resource type.
Corresponds to the JSON property type
4368 4369 4370 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4368 def type @type end |
#user_email ⇒ String
Email address of the authenticated user.
Corresponds to the JSON property userEmail
4373 4374 4375 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4373 def user_email @user_email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4380 4381 4382 4383 4384 4385 4386 4387 4388 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4380 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 |