Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReplyReference

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaReplyReference

Returns a new instance of GoogleCloudDiscoveryengineV1alphaReplyReference.



6223
6224
6225
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6223

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

Instance Attribute Details

#anchor_textString

Anchor text. Corresponds to the JSON property anchorText

Returns:

  • (String)


6206
6207
6208
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6206

def anchor_text
  @anchor_text
end

#endFixnum

Anchor text end index. Corresponds to the JSON property end

Returns:

  • (Fixnum)


6211
6212
6213
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6211

def end
  @end
end

#startFixnum

Anchor text start index. Corresponds to the JSON property start

Returns:

  • (Fixnum)


6216
6217
6218
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6216

def start
  @start
end

#uriString

URI link reference. Corresponds to the JSON property uri

Returns:

  • (String)


6221
6222
6223
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6221

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6228
6229
6230
6231
6232
6233
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6228

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