|
| 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 Delegated Admin Access Assignment. |
| 19 | + /// </summary> |
| 20 | + [JsonConverter(typeof(DerivedTypeConverter<DelegatedAdminAccessAssignment>))] |
| 21 | + public partial class DelegatedAdminAccessAssignment : Entity |
| 22 | + { |
| 23 | + |
| 24 | + /// <summary> |
| 25 | + /// Gets or sets access container. |
| 26 | + /// The access container through which members are assigned access. For example, a security group. |
| 27 | + /// </summary> |
| 28 | + [JsonPropertyName("accessContainer")] |
| 29 | + public DelegatedAdminAccessContainer AccessContainer { get; set; } |
| 30 | + |
| 31 | + /// <summary> |
| 32 | + /// Gets or sets access details. |
| 33 | + /// The access details containing the identifiers of the administrative roles that the partner is assigned in the customer tenant. |
| 34 | + /// </summary> |
| 35 | + [JsonPropertyName("accessDetails")] |
| 36 | + public DelegatedAdminAccessDetails AccessDetails { get; set; } |
| 37 | + |
| 38 | + /// <summary> |
| 39 | + /// Gets or sets created date time. |
| 40 | + /// The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only. |
| 41 | + /// </summary> |
| 42 | + [JsonPropertyName("createdDateTime")] |
| 43 | + public DateTimeOffset? CreatedDateTime { get; set; } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Gets or sets last modified date time. |
| 47 | + /// The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only. |
| 48 | + /// </summary> |
| 49 | + [JsonPropertyName("lastModifiedDateTime")] |
| 50 | + public DateTimeOffset? LastModifiedDateTime { get; set; } |
| 51 | + |
| 52 | + /// <summary> |
| 53 | + /// Gets or sets status. |
| 54 | + /// The status of the access assignment. Read-only. The possible values are: pending, active, deleting, deleted, error, unknownFutureValue. |
| 55 | + /// </summary> |
| 56 | + [JsonPropertyName("status")] |
| 57 | + public DelegatedAdminAccessAssignmentStatus? Status { get; set; } |
| 58 | + |
| 59 | + } |
| 60 | +} |
| 61 | + |
0 commit comments