-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated models and request builders using Typewriter (#20)
* Update generated files with build 1459608
- Loading branch information
1 parent
cca4d85
commit 8d3a3d1
Showing
1,206 changed files
with
19,189 additions
and
2,062 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
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,38 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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 ActivityType. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum ActivityType | ||
{ | ||
|
||
/// <summary> | ||
/// Signin | ||
/// </summary> | ||
Signin = 0, | ||
|
||
/// <summary> | ||
/// User | ||
/// </summary> | ||
User = 1, | ||
|
||
/// <summary> | ||
/// Unknown Future Value | ||
/// </summary> | ||
UnknownFutureValue = 2, | ||
|
||
} | ||
} |
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,38 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type AddFooter. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class AddFooter : MarkContent | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets margin. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "margin", Required = Newtonsoft.Json.Required.Default)] | ||
public Int32? Margin { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets alignment. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "alignment", Required = Newtonsoft.Json.Required.Default)] | ||
public Alignment? Alignment { 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,38 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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\ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// The type AddHeader. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class AddHeader : MarkContent | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets margin. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "margin", Required = Newtonsoft.Json.Required.Default)] | ||
public Int32? Margin { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets alignment. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "alignment", Required = Newtonsoft.Json.Required.Default)] | ||
public Alignment? Alignment { 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
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,38 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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 Alignment. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum Alignment | ||
{ | ||
|
||
/// <summary> | ||
/// Left | ||
/// </summary> | ||
Left = 0, | ||
|
||
/// <summary> | ||
/// Right | ||
/// </summary> | ||
Right = 1, | ||
|
||
/// <summary> | ||
/// Center | ||
/// </summary> | ||
Center = 2, | ||
|
||
} | ||
} |
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
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
48 changes: 48 additions & 0 deletions
48
src/Microsoft.Graph/Models/Generated/AppInstallControlType.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,48 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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 AppInstallControlType. | ||
/// </summary> | ||
[JsonConverter(typeof(EnumConverter))] | ||
public enum AppInstallControlType | ||
{ | ||
|
||
/// <summary> | ||
/// Not Configured | ||
/// </summary> | ||
NotConfigured = 0, | ||
|
||
/// <summary> | ||
/// Anywhere | ||
/// </summary> | ||
Anywhere = 1, | ||
|
||
/// <summary> | ||
/// Store Only | ||
/// </summary> | ||
StoreOnly = 2, | ||
|
||
/// <summary> | ||
/// Recommendations | ||
/// </summary> | ||
Recommendations = 3, | ||
|
||
/// <summary> | ||
/// Prefer Store | ||
/// </summary> | ||
PreferStore = 4, | ||
|
||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
src/Microsoft.Graph/Models/Generated/AppVulnerabilityManagedDevice.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,48 @@ | ||
// ------------------------------------------------------------------------------ | ||
// 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 App Vulnerability Managed Device. | ||
/// </summary> | ||
[JsonObject(MemberSerialization = MemberSerialization.OptIn)] | ||
public partial class AppVulnerabilityManagedDevice : Entity | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets managed device id. | ||
/// The Intune managed device ID. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "managedDeviceId", Required = Newtonsoft.Json.Required.Default)] | ||
public string ManagedDeviceId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets display name. | ||
/// The device name. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "displayName", Required = Newtonsoft.Json.Required.Default)] | ||
public string DisplayName { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets last sync date time. | ||
/// The created date. | ||
/// </summary> | ||
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "lastSyncDateTime", Required = Newtonsoft.Json.Required.Default)] | ||
public DateTimeOffset? LastSyncDateTime { get; set; } | ||
|
||
} | ||
} | ||
|
Oops, something went wrong.