< Summary

Class:Microsoft.Azure.Graph.RBAC.Models.OptionalClaims
Assembly:Microsoft.Azure.Graph.RBAC
File(s):C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\OptionalClaims.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:75
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_IdToken()-0%100%
get_AccessToken()-0%100%
get_SamlToken()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\OptionalClaims.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.Graph.RBAC.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Specifying the claims to be included in the token.
 20    /// </summary>
 21    public partial class OptionalClaims
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the OptionalClaims class.
 25        /// </summary>
 026        public OptionalClaims()
 27        {
 28            CustomInit();
 029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the OptionalClaims class.
 33        /// </summary>
 34        /// <param name="idToken">Optional claims requested to be included in
 35        /// the id token.</param>
 36        /// <param name="accessToken">Optional claims requested to be included
 37        /// in the access token.</param>
 38        /// <param name="samlToken">Optional claims requested to be included in
 39        /// the saml token.</param>
 040        public OptionalClaims(IList<OptionalClaim> idToken = default(IList<OptionalClaim>), IList<OptionalClaim> accessT
 41        {
 042            IdToken = idToken;
 043            AccessToken = accessToken;
 044            SamlToken = samlToken;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets or sets optional claims requested to be included in the id
 55        /// token.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "idToken")]
 058        public IList<OptionalClaim> IdToken { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets optional claims requested to be included in the access
 62        /// token.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "accessToken")]
 065        public IList<OptionalClaim> AccessToken { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets optional claims requested to be included in the saml
 69        /// token.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "samlToken")]
 072        public IList<OptionalClaim> SamlToken { get; set; }
 73
 74    }
 75}