-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update generated files with build 2738952
- Loading branch information
Microsoft Graph DevX Tooling
authored and
Microsoft Graph DevX Tooling
committed
Apr 14, 2020
1 parent
5ddc999
commit 924bdd5
Showing
195 changed files
with
13,423 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
src/Microsoft.Graph/Models/Generated/ActivityBasedTimeoutPolicy.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type Activity Based Timeout Policy. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class ActivityBasedTimeoutPolicy : StsPolicy | ||
{ | ||
|
||
///<summary> | ||
/// The ActivityBasedTimeoutPolicy constructor | ||
///</summary> | ||
public ActivityBasedTimeoutPolicy() | ||
{ | ||
this.ODataType = "microsoft.graph.activityBasedTimeoutPolicy"; | ||
} | ||
|
||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
src/Microsoft.Graph/Models/Generated/CalendarPermission.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type Calendar Permission. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class CalendarPermission : Entity | ||
{ | ||
|
||
///<summary> | ||
/// The CalendarPermission constructor | ||
///</summary> | ||
public CalendarPermission() | ||
{ | ||
this.ODataType = "microsoft.graph.calendarPermission"; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets email address. | ||
/// Represents a sharee or delegate who has access to the calendar. For the 'My Organization' sharee, the address property is null. Read-only. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "emailAddress", Required = Newtonsoft.Json.Required.Default)] | ||
public EmailAddress EmailAddress { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets is removable. | ||
/// True if the user can be removed from the list of sharees or delegates for the specified calendar, false otherwise. The 'My organization' user determines the permissions other people within your organization have to the given calendar. You cannot remove 'My organization' as a sharee to a calendar. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isRemovable", Required = Newtonsoft.Json.Required.Default)] | ||
public bool? IsRemovable { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets is inside organization. | ||
/// True if the user in context (sharee or delegate) is inside the same organization as the calendar owner. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isInsideOrganization", Required = Newtonsoft.Json.Required.Default)] | ||
public bool? IsInsideOrganization { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets role. | ||
/// Current permission level of the calendar sharee or delegate. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "role", Required = Newtonsoft.Json.Required.Default)] | ||
public CalendarRoleType? Role { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets allowed roles. | ||
/// List of allowed sharing or delegating permission levels for the calendar. Possible values are: none, freeBusyRead, limitedRead, read, write, delegateWithoutPrivateEventAccess, delegateWithPrivateEventAccess, custom. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "allowedRoles", Required = Newtonsoft.Json.Required.Default)] | ||
public IEnumerable<CalendarRoleType> AllowedRoles { get; set; } | ||
|
||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum CalendarRoleType. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum CalendarRoleType | ||
{ | ||
|
||
/// <summary> | ||
/// None | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// Free Busy Read | ||
/// </summary> | ||
FreeBusyRead = 1, | ||
|
||
/// <summary> | ||
/// Limited Read | ||
/// </summary> | ||
LimitedRead = 2, | ||
|
||
/// <summary> | ||
/// Read | ||
/// </summary> | ||
Read = 3, | ||
|
||
/// <summary> | ||
/// Write | ||
/// </summary> | ||
Write = 4, | ||
|
||
/// <summary> | ||
/// Delegate Without Private Event Access | ||
/// </summary> | ||
DelegateWithoutPrivateEventAccess = 5, | ||
|
||
/// <summary> | ||
/// Delegate With Private Event Access | ||
/// </summary> | ||
DelegateWithPrivateEventAccess = 6, | ||
|
||
/// <summary> | ||
/// Custom | ||
/// </summary> | ||
Custom = 7, | ||
|
||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/Microsoft.Graph/Models/Generated/CalendarSharingAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum CalendarSharingAction. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum CalendarSharingAction | ||
{ | ||
|
||
/// <summary> | ||
/// Accept | ||
/// </summary> | ||
Accept = 0, | ||
|
||
/// <summary> | ||
/// Accept And View Calendar | ||
/// </summary> | ||
AcceptAndViewCalendar = 1, | ||
|
||
/// <summary> | ||
/// View Calendar | ||
/// </summary> | ||
ViewCalendar = 2, | ||
|
||
/// <summary> | ||
/// Add This Calendar | ||
/// </summary> | ||
AddThisCalendar = 3, | ||
|
||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
src/Microsoft.Graph/Models/Generated/CalendarSharingActionImportance.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum CalendarSharingActionImportance. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum CalendarSharingActionImportance | ||
{ | ||
|
||
/// <summary> | ||
/// Primary | ||
/// </summary> | ||
Primary = 0, | ||
|
||
/// <summary> | ||
/// Secondary | ||
/// </summary> | ||
Secondary = 1, | ||
|
||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Microsoft.Graph/Models/Generated/CalendarSharingActionType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: Templates\CSharp\Model\EnumType.cs.tt | ||
|
||
|
||
namespace Microsoft.Graph | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The enum CalendarSharingActionType. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum CalendarSharingActionType | ||
{ | ||
|
||
/// <summary> | ||
/// Accept | ||
/// </summary> | ||
Accept = 0, | ||
|
||
} | ||
} |
Oops, something went wrong.