Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
A link to a bot instruction.
Instance Attribute Summary collapse
-
#end_line ⇒ Fixnum
The exclusive end line number of the instructions.
-
#start_line ⇒ Fixnum
The inclusive start line number of the instructions.
-
#subagent ⇒ String
The name of the subagent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink
constructor
A new instance of GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink
Returns a new instance of GoogleCloudContactcenterinsightsV1LossPatternLinkBotInstructionLink.
7923 7924 7925 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7923 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_line ⇒ Fixnum
The exclusive end line number of the instructions.
Corresponds to the JSON property endLine
7911 7912 7913 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7911 def end_line @end_line end |
#start_line ⇒ Fixnum
The inclusive start line number of the instructions.
Corresponds to the JSON property startLine
7916 7917 7918 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7916 def start_line @start_line end |
#subagent ⇒ String
The name of the subagent.
Corresponds to the JSON property subagent
7921 7922 7923 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7921 def subagent @subagent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7928 7929 7930 7931 7932 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7928 def update!(**args) @end_line = args[:end_line] if args.key?(:end_line) @start_line = args[:start_line] if args.key?(:start_line) @subagent = args[:subagent] if args.key?(:subagent) end |