Show / Hide Table of Contents

Class ScoringConfig

Scoring configurations for a source while processing a Search or Suggest request.

Inheritance
System.Object
ScoringConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class ScoringConfig : IDirectResponseSchema

Properties

DisableFreshness

Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.

Declaration
[JsonProperty("disableFreshness")]
public virtual bool? DisableFreshness { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DisablePersonalization

Whether to personalize the results. By default, personal signals will be used to boost results.

Declaration
[JsonProperty("disablePersonalization")]
public virtual bool? DisablePersonalization { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top