Skip to content

Commit c86f030

Browse files
authored
Merge pull request #1500 from microsoftgraph/v1.0/pipelinebuild/87032
Generated v1.0 models and request builders using Typewriter
2 parents c4c9ae4 + 5398091 commit c86f030

51 files changed

Lines changed: 3114 additions & 3 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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: EntityType.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 Add Large Gallery View Operation.
19+
/// </summary>
20+
public partial class AddLargeGalleryViewOperation : CommsOperation
21+
{
22+
23+
///<summary>
24+
/// The AddLargeGalleryViewOperation constructor
25+
///</summary>
26+
public AddLargeGalleryViewOperation()
27+
{
28+
this.ODataType = "microsoft.graph.addLargeGalleryViewOperation";
29+
}
30+
31+
}
32+
}
33+

src/Microsoft.Graph/Generated/model/Application.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public Application()
5858

5959
/// <summary>
6060
/// Gets or sets app roles.
61-
/// The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
61+
/// The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable.
6262
/// </summary>
6363
[JsonPropertyName("appRoles")]
6464
public IEnumerable<AppRole> AppRoles { get; set; }
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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 AuthorizationInfo.
19+
/// </summary>
20+
[JsonConverter(typeof(DerivedTypeConverter<AuthorizationInfo>))]
21+
public partial class AuthorizationInfo
22+
{
23+
24+
/// <summary>
25+
/// Gets or sets certificateUserIds.
26+
/// </summary>
27+
[JsonPropertyName("certificateUserIds")]
28+
public IEnumerable<string> CertificateUserIds { get; set; }
29+
30+
/// <summary>
31+
/// Gets or sets additional data.
32+
/// </summary>
33+
[JsonExtensionData]
34+
public IDictionary<string, object> AdditionalData { get; set; }
35+
36+
/// <summary>
37+
/// Gets or sets @odata.type.
38+
/// </summary>
39+
[JsonPropertyName("@odata.type")]
40+
public string ODataType { get; set; }
41+
42+
}
43+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
}

src/Microsoft.Graph/Generated/model/BroadcastMeetingSettings.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ public partial class BroadcastMeetingSettings
2828
[JsonPropertyName("allowedAudience")]
2929
public BroadcastMeetingAudience? AllowedAudience { get; set; }
3030

31+
/// <summary>
32+
/// Gets or sets captions.
33+
/// Caption settings of a Teams live event.
34+
/// </summary>
35+
[JsonPropertyName("captions")]
36+
public BroadcastMeetingCaptionSettings Captions { get; set; }
37+
3138
/// <summary>
3239
/// Gets or sets isAttendeeReportEnabled.
3340
/// Indicates whether attendee report is enabled for this Teams live event. Default value is false.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 CallAddLargeGalleryViewRequestBody.
19+
/// </summary>
20+
public partial class CallAddLargeGalleryViewRequestBody
21+
{
22+
23+
/// <summary>
24+
/// Gets or sets ClientContext.
25+
/// </summary>
26+
[JsonPropertyName("clientContext")]
27+
public string ClientContext { get; set; }
28+
29+
}
30+
}

src/Microsoft.Graph/Generated/model/Chat.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public partial class Chat : Entity
114114

115115
/// <summary>
116116
/// Gets or sets pinned messages.
117+
/// A collection of all the pinned messages in the chat. Nullable.
117118
/// </summary>
118119
[JsonPropertyName("pinnedMessages")]
119120
public IChatPinnedMessagesCollectionPage PinnedMessages { get; set; }

src/Microsoft.Graph/Generated/model/MessagePinnedEventMessageDetail.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ public MessagePinnedEventMessageDetail()
2929

3030
/// <summary>
3131
/// Gets or sets eventDateTime.
32+
/// Date and time when the event occurred.
3233
/// </summary>
3334
[JsonPropertyName("eventDateTime")]
3435
public DateTimeOffset? EventDateTime { get; set; }
3536

3637
/// <summary>
3738
/// Gets or sets initiator.
39+
/// Initiator of the event.
3840
/// </summary>
3941
[JsonPropertyName("initiator")]
4042
public IdentitySet Initiator { get; set; }

src/Microsoft.Graph/Generated/model/MessageUnpinnedEventMessageDetail.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ public MessageUnpinnedEventMessageDetail()
2929

3030
/// <summary>
3131
/// Gets or sets eventDateTime.
32+
/// Date and time when the event occurred.
3233
/// </summary>
3334
[JsonPropertyName("eventDateTime")]
3435
public DateTimeOffset? EventDateTime { get; set; }
3536

3637
/// <summary>
3738
/// Gets or sets initiator.
39+
/// Initiator of the event.
3840
/// </summary>
3941
[JsonPropertyName("initiator")]
4042
public IdentitySet Initiator { get; set; }

src/Microsoft.Graph/Generated/model/PinnedChatMessageInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public partial class PinnedChatMessageInfo : Entity
2222

2323
/// <summary>
2424
/// Gets or sets message.
25+
/// Represents details about the chat message that is pinned.
2526
/// </summary>
2627
[JsonPropertyName("message")]
2728
public ChatMessage Message { get; set; }

0 commit comments

Comments
 (0)