Class: Google::Apis::CloudsearchV1::Snippet

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Snippet of the search result, which summarizes the content of the resulting page.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Snippet

Returns a new instance of Snippet.



4403
4404
4405
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4403

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

Instance Attribute Details

#match_rangesArray<Google::Apis::CloudsearchV1::MatchRange>

The matched ranges in the snippet. Corresponds to the JSON property matchRanges



4395
4396
4397
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4395

def match_ranges
  @match_ranges
end

#snippetString

The snippet of the document. The snippet of the document. May contain escaped HTML character that should be unescaped prior to rendering. Corresponds to the JSON property snippet

Returns:

  • (String)


4401
4402
4403
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4401

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4408
4409
4410
4411
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4408

def update!(**args)
  @match_ranges = args[:match_ranges] if args.key?(:match_ranges)
  @snippet = args[:snippet] if args.key?(:snippet)
end