< Summary

Class:Microsoft.Azure.Search.Models.MagnitudeScoringParameters
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\MagnitudeScoringParameters.cs
Covered lines:11
Uncovered lines:0
Coverable lines:11
Total lines:82
Line coverage:100% (11 of 11)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_BoostingRangeStart()-100%100%
get_BoostingRangeEnd()-100%100%
get_ShouldBoostBeyondRangeByConstant()-100%100%
Validate()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\MagnitudeScoringParameters.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Search.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Provides parameter values to a magnitude scoring function.
 18    /// </summary>
 19    public partial class MagnitudeScoringParameters
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the MagnitudeScoringParameters class.
 23        /// </summary>
 26624        public MagnitudeScoringParameters()
 25        {
 26            CustomInit();
 26627        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the MagnitudeScoringParameters class.
 31        /// </summary>
 32        /// <param name="boostingRangeStart">The field value at which boosting
 33        /// starts.</param>
 34        /// <param name="boostingRangeEnd">The field value at which boosting
 35        /// ends.</param>
 36        /// <param name="shouldBoostBeyondRangeByConstant">A value indicating
 37        /// whether to apply a constant boost for field values beyond the range
 38        /// end value; default is false.</param>
 28439        public MagnitudeScoringParameters(double boostingRangeStart, double boostingRangeEnd, bool? shouldBoostBeyondRan
 40        {
 28441            BoostingRangeStart = boostingRangeStart;
 28442            BoostingRangeEnd = boostingRangeEnd;
 28443            ShouldBoostBeyondRangeByConstant = shouldBoostBeyondRangeByConstant;
 44            CustomInit();
 28445        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets the field value at which boosting starts.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "boostingRangeStart")]
 88256        public double BoostingRangeStart { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets the field value at which boosting ends.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "boostingRangeEnd")]
 88262        public double BoostingRangeEnd { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets a value indicating whether to apply a constant boost
 66        /// for field values beyond the range end value; default is false.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "constantBoostBeyondRange")]
 107269        public bool? ShouldBoostBeyondRangeByConstant { get; set; }
 70
 71        /// <summary>
 72        /// Validate the object.
 73        /// </summary>
 74        /// <exception cref="Rest.ValidationException">
 75        /// Thrown if validation fails
 76        /// </exception>
 77        public virtual void Validate()
 78        {
 79            //Nothing to validate
 27280        }
 81    }
 82}