Class: Google::Apis::CloudsearchV1::FacetResult

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

Source specific facet response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FacetResult

Returns a new instance of FacetResult.



1146
1147
1148
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1146

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

Instance Attribute Details

#bucketsArray<Google::Apis::CloudsearchV1::FacetBucket>

FacetBuckets for values in response containing at least a single result. Corresponds to the JSON property buckets



1128
1129
1130
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1128

def buckets
  @buckets
end

#object_typeString

Object type for which facet results are returned. Can be empty. Corresponds to the JSON property objectType

Returns:

  • (String)


1133
1134
1135
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1133

def object_type
  @object_type
end

#operator_nameString

Name of the operator chosen for faceting. @see cloudsearch. SchemaPropertyOptions Corresponds to the JSON property operatorName

Returns:

  • (String)


1139
1140
1141
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1139

def operator_name
  @operator_name
end

#source_nameString

Source name for which facet results are returned. Will not be empty. Corresponds to the JSON property sourceName

Returns:

  • (String)


1144
1145
1146
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1144

def source_name
  @source_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1151
1152
1153
1154
1155
1156
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 1151

def update!(**args)
  @buckets = args[:buckets] if args.key?(:buckets)
  @object_type = args[:object_type] if args.key?(:object_type)
  @operator_name = args[:operator_name] if args.key?(:operator_name)
  @source_name = args[:source_name] if args.key?(:source_name)
end