|
| 1 | +// ------------------------------------------------------------------------------ |
| 2 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 3 | +// ------------------------------------------------------------------------------ |
| 4 | + |
| 5 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 6 | +// <auto-generated/> |
| 7 | + |
| 8 | +// Template Source: EntityType.cs.tt |
| 9 | + |
| 10 | +namespace Microsoft.Graph |
| 11 | +{ |
| 12 | + using System; |
| 13 | + using System.Collections.Generic; |
| 14 | + using System.IO; |
| 15 | + using System.Text.Json.Serialization; |
| 16 | + |
| 17 | + /// <summary> |
| 18 | + /// The type X509Certificate Authentication Method Configuration. |
| 19 | + /// </summary> |
| 20 | + public partial class X509CertificateAuthenticationMethodConfiguration : AuthenticationMethodConfiguration |
| 21 | + { |
| 22 | + |
| 23 | + ///<summary> |
| 24 | + /// The X509CertificateAuthenticationMethodConfiguration constructor |
| 25 | + ///</summary> |
| 26 | + public X509CertificateAuthenticationMethodConfiguration() |
| 27 | + { |
| 28 | + this.ODataType = "microsoft.graph.x509CertificateAuthenticationMethodConfiguration"; |
| 29 | + } |
| 30 | + |
| 31 | + /// <summary> |
| 32 | + /// Gets or sets authentication mode configuration. |
| 33 | + /// </summary> |
| 34 | + [JsonPropertyName("authenticationModeConfiguration")] |
| 35 | + public X509CertificateAuthenticationModeConfiguration AuthenticationModeConfiguration { get; set; } |
| 36 | + |
| 37 | + /// <summary> |
| 38 | + /// Gets or sets certificate user bindings. |
| 39 | + /// </summary> |
| 40 | + [JsonPropertyName("certificateUserBindings")] |
| 41 | + public IEnumerable<X509CertificateUserBinding> CertificateUserBindings { get; set; } |
| 42 | + |
| 43 | + /// <summary> |
| 44 | + /// Gets or sets include targets. |
| 45 | + /// </summary> |
| 46 | + [JsonPropertyName("includeTargets")] |
| 47 | + public IX509CertificateAuthenticationMethodConfigurationIncludeTargetsCollectionPage IncludeTargets { get; set; } |
| 48 | + |
| 49 | + /// <summary> |
| 50 | + /// Gets or sets includeTargetsNextLink. |
| 51 | + /// </summary> |
| 52 | + [JsonPropertyName("includeTargets@odata.nextLink")] |
| 53 | + [JsonConverter(typeof(NextLinkConverter))] |
| 54 | + public string IncludeTargetsNextLink { get; set; } |
| 55 | + |
| 56 | + } |
| 57 | +} |
| 58 | + |
0 commit comments