< Summary

Class:Microsoft.Azure.CognitiveServices.Personalizer.Models.RewardRequest
Assembly:Microsoft.Azure.CognitiveServices.Personalizer
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\RewardRequest.cs
Covered lines:5
Uncovered lines:2
Coverable lines:7
Total lines:63
Line coverage:71.4% (5 of 7)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-100%100%
get_Value()-100%100%
Validate()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\RewardRequest.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.CognitiveServices.Personalizer.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Reward given to a rank response.
 18    /// </summary>
 19    public partial class RewardRequest
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the RewardRequest class.
 23        /// </summary>
 024        public RewardRequest()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the RewardRequest class.
 31        /// </summary>
 32        /// <param name="value">Reward to be assigned to an action. Value
 33        /// should be between -1 and 1 inclusive.</param>
 234        public RewardRequest(double value)
 35        {
 236            Value = value;
 37            CustomInit();
 238        }
 39
 40        /// <summary>
 41        /// An initialization method that performs custom operations like setting defaults
 42        /// </summary>
 43        partial void CustomInit();
 44
 45        /// <summary>
 46        /// Gets or sets reward to be assigned to an action. Value should be
 47        /// between -1 and 1 inclusive.
 48        /// </summary>
 49        [JsonProperty(PropertyName = "value")]
 450        public double Value { get; set; }
 51
 52        /// <summary>
 53        /// Validate the object.
 54        /// </summary>
 55        /// <exception cref="Rest.ValidationException">
 56        /// Thrown if validation fails
 57        /// </exception>
 58        public virtual void Validate()
 59        {
 60            //Nothing to validate
 261        }
 62    }
 63}