|
| 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 | + |
| 7 | + |
| 8 | +namespace Microsoft.Graph |
| 9 | +{ |
| 10 | + using System; |
| 11 | + using System.Collections.Generic; |
| 12 | + using System.IO; |
| 13 | + using System.Runtime.Serialization; |
| 14 | + using Newtonsoft.Json; |
| 15 | + |
| 16 | + /// <summary> |
| 17 | + /// The type AutomaticRepliesSetting. |
| 18 | + /// </summary> |
| 19 | + [JsonObject(MemberSerialization = MemberSerialization.OptIn)] |
| 20 | + [JsonConverter(typeof(DerivedTypeConverter))] |
| 21 | + public partial class AutomaticRepliesSetting |
| 22 | + { |
| 23 | + |
| 24 | + /// <summary> |
| 25 | + /// Gets or sets status. |
| 26 | + /// </summary> |
| 27 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "status", Required = Required.Default)] |
| 28 | + public AutomaticRepliesStatus? Status { get; set; } |
| 29 | + |
| 30 | + /// <summary> |
| 31 | + /// Gets or sets externalAudience. |
| 32 | + /// </summary> |
| 33 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "externalAudience", Required = Required.Default)] |
| 34 | + public ExternalAudienceScope? ExternalAudience { get; set; } |
| 35 | + |
| 36 | + /// <summary> |
| 37 | + /// Gets or sets scheduledStartDateTime. |
| 38 | + /// </summary> |
| 39 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "scheduledStartDateTime", Required = Required.Default)] |
| 40 | + public DateTimeTimeZone ScheduledStartDateTime { get; set; } |
| 41 | + |
| 42 | + /// <summary> |
| 43 | + /// Gets or sets scheduledEndDateTime. |
| 44 | + /// </summary> |
| 45 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "scheduledEndDateTime", Required = Required.Default)] |
| 46 | + public DateTimeTimeZone ScheduledEndDateTime { get; set; } |
| 47 | + |
| 48 | + /// <summary> |
| 49 | + /// Gets or sets internalReplyMessage. |
| 50 | + /// </summary> |
| 51 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "internalReplyMessage", Required = Required.Default)] |
| 52 | + public string InternalReplyMessage { get; set; } |
| 53 | + |
| 54 | + /// <summary> |
| 55 | + /// Gets or sets externalReplyMessage. |
| 56 | + /// </summary> |
| 57 | + [JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "externalReplyMessage", Required = Required.Default)] |
| 58 | + public string ExternalReplyMessage { get; set; } |
| 59 | + |
| 60 | + /// <summary> |
| 61 | + /// Gets or sets additional data. |
| 62 | + /// </summary> |
| 63 | + [JsonExtensionData(ReadData = true)] |
| 64 | + public IDictionary<string, object> AdditionalData { get; set; } |
| 65 | + |
| 66 | + } |
| 67 | +} |
0 commit comments