|
| 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: MethodRequestBody.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 DeviceManagementReportsGetNoncompliantDevicesAndSettingsReportRequestBody. |
| 19 | + /// </summary> |
| 20 | + public partial class DeviceManagementReportsGetNoncompliantDevicesAndSettingsReportRequestBody |
| 21 | + { |
| 22 | + |
| 23 | + /// <summary> |
| 24 | + /// Gets or sets Name. |
| 25 | + /// </summary> |
| 26 | + [JsonPropertyName("name")] |
| 27 | + public string Name { get; set; } |
| 28 | + |
| 29 | + /// <summary> |
| 30 | + /// Gets or sets Select. |
| 31 | + /// </summary> |
| 32 | + [JsonPropertyName("select")] |
| 33 | + public IEnumerable<string> Select { get; set; } |
| 34 | + |
| 35 | + /// <summary> |
| 36 | + /// Gets or sets Search. |
| 37 | + /// </summary> |
| 38 | + [JsonPropertyName("search")] |
| 39 | + public string Search { get; set; } |
| 40 | + |
| 41 | + /// <summary> |
| 42 | + /// Gets or sets GroupBy. |
| 43 | + /// </summary> |
| 44 | + [JsonPropertyName("groupBy")] |
| 45 | + public IEnumerable<string> GroupBy { get; set; } |
| 46 | + |
| 47 | + /// <summary> |
| 48 | + /// Gets or sets OrderBy. |
| 49 | + /// </summary> |
| 50 | + [JsonPropertyName("orderBy")] |
| 51 | + public IEnumerable<string> OrderBy { get; set; } |
| 52 | + |
| 53 | + /// <summary> |
| 54 | + /// Gets or sets Skip. |
| 55 | + /// </summary> |
| 56 | + [JsonPropertyName("skip")] |
| 57 | + public Int32? Skip { get; set; } |
| 58 | + |
| 59 | + /// <summary> |
| 60 | + /// Gets or sets Top. |
| 61 | + /// </summary> |
| 62 | + [JsonPropertyName("top")] |
| 63 | + public Int32? Top { get; set; } |
| 64 | + |
| 65 | + /// <summary> |
| 66 | + /// Gets or sets SessionId. |
| 67 | + /// </summary> |
| 68 | + [JsonPropertyName("sessionId")] |
| 69 | + public string SessionId { get; set; } |
| 70 | + |
| 71 | + /// <summary> |
| 72 | + /// Gets or sets Filter. |
| 73 | + /// </summary> |
| 74 | + [JsonPropertyName("filter")] |
| 75 | + public string Filter { get; set; } |
| 76 | + |
| 77 | + } |
| 78 | +} |
0 commit comments