< Summary

Class:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker.Models.PromptDTO
Assembly:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\Models\PromptDTO.cs
Covered lines:0
Uncovered lines:18
Coverable lines:18
Total lines:103
Line coverage:0% (0 of 18)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_DisplayOrder()-0%100%
get_QnaId()-0%100%
get_Qna()-0%100%
get_DisplayText()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\Models\PromptDTO.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.Knowledge.QnAMaker.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// Prompt for an answer.
 19    /// </summary>
 20    public partial class PromptDTO
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the PromptDTO class.
 24        /// </summary>
 025        public PromptDTO()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the PromptDTO class.
 32        /// </summary>
 33        /// <param name="displayOrder">Index of the prompt - used in ordering
 34        /// of the prompts</param>
 35        /// <param name="qnaId">Qna id corresponding to the prompt - if QnaId
 36        /// is present, QnADTO object is ignored.</param>
 37        /// <param name="qna">QnADTO - Either QnaId or QnADTO needs to be
 38        /// present in a PromptDTO object</param>
 39        /// <param name="displayText">Text displayed to represent a follow up
 40        /// question prompt</param>
 041        public PromptDTO(int? displayOrder = default(int?), int? qnaId = default(int?), PromptDTOQna qna = default(Promp
 42        {
 043            DisplayOrder = displayOrder;
 044            QnaId = qnaId;
 045            Qna = qna;
 046            DisplayText = displayText;
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Gets or sets index of the prompt - used in ordering of the prompts
 57        /// </summary>
 58        [JsonProperty(PropertyName = "displayOrder")]
 059        public int? DisplayOrder { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets qna id corresponding to the prompt - if QnaId is
 63        /// present, QnADTO object is ignored.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "qnaId")]
 066        public int? QnaId { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets qnADTO - Either QnaId or QnADTO needs to be present in
 70        /// a PromptDTO object
 71        /// </summary>
 72        [JsonProperty(PropertyName = "qna")]
 073        public PromptDTOQna Qna { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets text displayed to represent a follow up question
 77        /// prompt
 78        /// </summary>
 79        [JsonProperty(PropertyName = "displayText")]
 080        public string DisplayText { get; set; }
 81
 82        /// <summary>
 83        /// Validate the object.
 84        /// </summary>
 85        /// <exception cref="ValidationException">
 86        /// Thrown if validation fails
 87        /// </exception>
 88        public virtual void Validate()
 89        {
 090            if (Qna != null)
 91            {
 092                Qna.Validate();
 93            }
 094            if (DisplayText != null)
 95            {
 096                if (DisplayText.Length > 200)
 97                {
 098                    throw new ValidationException(ValidationRules.MaxLength, "DisplayText", 200);
 99                }
 100            }
 0101        }
 102    }
 103}