< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_TermsOfService()-0%100%
get_Marketing()-0%100%
get_Privacy()-0%100%
get_Support()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\InformationalUrl.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.Linq;
 15
 16    /// <summary>
 17    /// Represents a group of URIs that provide terms of service, marketing,
 18    /// support and privacy policy information about an application. The
 19    /// default value for each string is null.
 20    /// </summary>
 21    public partial class InformationalUrl
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the InformationalUrl class.
 25        /// </summary>
 026        public InformationalUrl()
 27        {
 28            CustomInit();
 029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the InformationalUrl class.
 33        /// </summary>
 34        /// <param name="termsOfService">The terms of service URI</param>
 35        /// <param name="marketing">The marketing URI</param>
 36        /// <param name="privacy">The privacy policy URI</param>
 37        /// <param name="support">The support URI</param>
 038        public InformationalUrl(string termsOfService = default(string), string marketing = default(string), string priv
 39        {
 040            TermsOfService = termsOfService;
 041            Marketing = marketing;
 042            Privacy = privacy;
 043            Support = support;
 44            CustomInit();
 045        }
 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 terms of service URI
 54        /// </summary>
 55        [JsonProperty(PropertyName = "termsOfService")]
 056        public string TermsOfService { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets the marketing URI
 60        /// </summary>
 61        [JsonProperty(PropertyName = "marketing")]
 062        public string Marketing { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the privacy policy URI
 66        /// </summary>
 67        [JsonProperty(PropertyName = "privacy")]
 068        public string Privacy { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets the support URI
 72        /// </summary>
 73        [JsonProperty(PropertyName = "support")]
 074        public string Support { get; set; }
 75
 76    }
 77}