Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply
- 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 a reply message to user.
Instance Attribute Summary collapse
-
#references ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReplyReference>
References in the reply.
-
#reply ⇒ String
DEPRECATED: use
summary
instead. -
#summary ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseSummary
Summary of the top N search result specified by the summary spec.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaReply
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaReply.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaReply
Returns a new instance of GoogleCloudDiscoveryengineV1alphaReply.
3268 3269 3270 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3268 def initialize(**args) update!(**args) end |
Instance Attribute Details
#references ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReplyReference>
References in the reply.
Corresponds to the JSON property references
3256 3257 3258 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3256 def references @references end |
#reply ⇒ String
DEPRECATED: use summary
instead. Text reply.
Corresponds to the JSON property reply
3261 3262 3263 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3261 def reply @reply end |
#summary ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseSummary
Summary of the top N search result specified by the summary spec.
Corresponds to the JSON property summary
3266 3267 3268 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3266 def summary @summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3273 3274 3275 3276 3277 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3273 def update!(**args) @references = args[:references] if args.key?(:references) @reply = args[:reply] if args.key?(:reply) @summary = args[:summary] if args.key?(:summary) end |