|
| 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: Templates\CSharp\Model\EntityType.cs.tt |
| 9 | + |
| 10 | +namespace Microsoft.Graph |
| 11 | +{ |
| 12 | + using System; |
| 13 | + using System.Collections.Generic; |
| 14 | + using System.IO; |
| 15 | + using System.Runtime.Serialization; |
| 16 | + using Newtonsoft.Json; |
| 17 | + |
| 18 | + /// <summary> |
| 19 | + /// The type Room. |
| 20 | + /// </summary> |
| 21 | + [JsonObject(MemberSerialization = MemberSerialization.OptIn)] |
| 22 | + public partial class Room : Place |
| 23 | + { |
| 24 | + |
| 25 | + ///<summary> |
| 26 | + /// The Room constructor |
| 27 | + ///</summary> |
| 28 | + public Room() |
| 29 | + { |
| 30 | + this.ODataType = "microsoft.graph.room"; |
| 31 | + } |
| 32 | + |
| 33 | + /// <summary> |
| 34 | + /// Gets or sets email address. |
| 35 | + /// </summary> |
| 36 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "emailAddress", Required = Newtonsoft.Json.Required.Default)] |
| 37 | + public string EmailAddress { get; set; } |
| 38 | + |
| 39 | + /// <summary> |
| 40 | + /// Gets or sets nickname. |
| 41 | + /// </summary> |
| 42 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "nickname", Required = Newtonsoft.Json.Required.Default)] |
| 43 | + public string Nickname { get; set; } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Gets or sets building. |
| 47 | + /// </summary> |
| 48 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "building", Required = Newtonsoft.Json.Required.Default)] |
| 49 | + public string Building { get; set; } |
| 50 | + |
| 51 | + /// <summary> |
| 52 | + /// Gets or sets floor number. |
| 53 | + /// </summary> |
| 54 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "floorNumber", Required = Newtonsoft.Json.Required.Default)] |
| 55 | + public Int32? FloorNumber { get; set; } |
| 56 | + |
| 57 | + /// <summary> |
| 58 | + /// Gets or sets label. |
| 59 | + /// </summary> |
| 60 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "label", Required = Newtonsoft.Json.Required.Default)] |
| 61 | + public string Label { get; set; } |
| 62 | + |
| 63 | + /// <summary> |
| 64 | + /// Gets or sets capacity. |
| 65 | + /// </summary> |
| 66 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "capacity", Required = Newtonsoft.Json.Required.Default)] |
| 67 | + public Int32? Capacity { get; set; } |
| 68 | + |
| 69 | + /// <summary> |
| 70 | + /// Gets or sets booking type. |
| 71 | + /// </summary> |
| 72 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "bookingType", Required = Newtonsoft.Json.Required.Default)] |
| 73 | + public BookingType? BookingType { get; set; } |
| 74 | + |
| 75 | + /// <summary> |
| 76 | + /// Gets or sets audio device name. |
| 77 | + /// </summary> |
| 78 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "audioDeviceName", Required = Newtonsoft.Json.Required.Default)] |
| 79 | + public string AudioDeviceName { get; set; } |
| 80 | + |
| 81 | + /// <summary> |
| 82 | + /// Gets or sets video device name. |
| 83 | + /// </summary> |
| 84 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "videoDeviceName", Required = Newtonsoft.Json.Required.Default)] |
| 85 | + public string VideoDeviceName { get; set; } |
| 86 | + |
| 87 | + /// <summary> |
| 88 | + /// Gets or sets display device name. |
| 89 | + /// </summary> |
| 90 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "displayDeviceName", Required = Newtonsoft.Json.Required.Default)] |
| 91 | + public string DisplayDeviceName { get; set; } |
| 92 | + |
| 93 | + /// <summary> |
| 94 | + /// Gets or sets is wheel chair accessible. |
| 95 | + /// </summary> |
| 96 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isWheelChairAccessible", Required = Newtonsoft.Json.Required.Default)] |
| 97 | + public bool? IsWheelChairAccessible { get; set; } |
| 98 | + |
| 99 | + /// <summary> |
| 100 | + /// Gets or sets tags. |
| 101 | + /// </summary> |
| 102 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "tags", Required = Newtonsoft.Json.Required.Default)] |
| 103 | + public IEnumerable<string> Tags { get; set; } |
| 104 | + |
| 105 | + /// <summary> |
| 106 | + /// Gets or sets floor label. |
| 107 | + /// </summary> |
| 108 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "floorLabel", Required = Newtonsoft.Json.Required.Default)] |
| 109 | + public string FloorLabel { get; set; } |
| 110 | + |
| 111 | + } |
| 112 | +} |
| 113 | + |
0 commit comments