Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated beta models and request builders using Typewriter #445

Merged
merged 3 commits into from
May 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Microsoft.Graph/Generated/model/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ public Application()

/// <summary>
/// Gets or sets service management reference.
/// References application or service contact information from a Service or Asset Management database. Nullable.
/// </summary>
[JsonPropertyName("serviceManagementReference")]
public string ServiceManagementReference { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Graph/Generated/model/ChatMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public partial class ChatMessage : Entity

/// <summary>
/// Gets or sets replies.
/// Replies for a specified message.
/// Replies for a specified message. Supports $expand for channel messages.
/// </summary>
[JsonPropertyName("replies")]
public IChatMessageRepliesCollectionPage Replies { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public partial class SynchronizationJobApplicationParameters

/// <summary>
/// Gets or sets ruleId.
/// The identifier of a the synchronizationRule to be applied.
/// The identifier of the synchronizationRule to be applied. This rule ID is defined in the schema for a given synchronization job or template.
/// </summary>
[JsonPropertyName("ruleId")]
public string RuleId { get; set; }
Expand Down
5 changes: 3 additions & 2 deletions src/Microsoft.Graph/Microsoft.Graph.Beta.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<PackageReleaseNotes>
- Latest metadata updates from 3rd May 2022 snapshot
- Latest metadata updates from 10th May 2022 snapshot
- Allow initialization of abstract complex types [#1328](https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1328)
</PackageReleaseNotes>
<!-- edit this value to change the current major.minor.patch version -->
<VersionPrefix>4.40.0</VersionPrefix>
<VersionPrefix>4.41.0</VersionPrefix>
<!-- adds a version suffix if the Prerelease environment variable is set. BUILD_BUILDID is an
environment variable set by Azure pipelines from the build. We can use the buildid to correlate
which commit was used to generate the preview build. -->
Expand Down