Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReplyReference
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReplyReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Defines reference in reply.
Instance Attribute Summary collapse
-
#anchor_text ⇒ String
Anchor text.
-
#end ⇒ Fixnum
Anchor text end index.
-
#start ⇒ Fixnum
Anchor text start index.
-
#uri ⇒ String
URI link reference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaReplyReference
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaReplyReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaReplyReference
Returns a new instance of GoogleCloudDiscoveryengineV1alphaReplyReference.
5038 5039 5040 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5038 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anchor_text ⇒ String
Anchor text.
Corresponds to the JSON property anchorText
5021 5022 5023 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5021 def anchor_text @anchor_text end |
#end ⇒ Fixnum
Anchor text end index.
Corresponds to the JSON property end
5026 5027 5028 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5026 def end @end end |
#start ⇒ Fixnum
Anchor text start index.
Corresponds to the JSON property start
5031 5032 5033 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5031 def start @start end |
#uri ⇒ String
URI link reference.
Corresponds to the JSON property uri
5036 5037 5038 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5036 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5043 5044 5045 5046 5047 5048 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5043 def update!(**args) @anchor_text = args[:anchor_text] if args.key?(:anchor_text) @end = args[:end] if args.key?(:end) @start = args[:start] if args.key?(:start) @uri = args[:uri] if args.key?(:uri) end |