|
| 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: ComplexType.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 BroadcastMeetingCaptionSettings. |
| 19 | + /// </summary> |
| 20 | + [JsonConverter(typeof(DerivedTypeConverter<BroadcastMeetingCaptionSettings>))] |
| 21 | + public partial class BroadcastMeetingCaptionSettings |
| 22 | + { |
| 23 | + |
| 24 | + /// <summary> |
| 25 | + /// Gets or sets isCaptionEnabled. |
| 26 | + /// Indicates whether captions are enabled for this Teams live event. |
| 27 | + /// </summary> |
| 28 | + [JsonPropertyName("isCaptionEnabled")] |
| 29 | + public bool? IsCaptionEnabled { get; set; } |
| 30 | + |
| 31 | + /// <summary> |
| 32 | + /// Gets or sets spokenLanguage. |
| 33 | + /// The spoken language. |
| 34 | + /// </summary> |
| 35 | + [JsonPropertyName("spokenLanguage")] |
| 36 | + public string SpokenLanguage { get; set; } |
| 37 | + |
| 38 | + /// <summary> |
| 39 | + /// Gets or sets translationLanguages. |
| 40 | + /// The translation languages (choose up to 6). |
| 41 | + /// </summary> |
| 42 | + [JsonPropertyName("translationLanguages")] |
| 43 | + public IEnumerable<string> TranslationLanguages { get; set; } |
| 44 | + |
| 45 | + /// <summary> |
| 46 | + /// Gets or sets additional data. |
| 47 | + /// </summary> |
| 48 | + [JsonExtensionData] |
| 49 | + public IDictionary<string, object> AdditionalData { get; set; } |
| 50 | + |
| 51 | + /// <summary> |
| 52 | + /// Gets or sets @odata.type. |
| 53 | + /// </summary> |
| 54 | + [JsonPropertyName("@odata.type")] |
| 55 | + public string ODataType { get; set; } |
| 56 | + |
| 57 | + } |
| 58 | +} |
0 commit comments