-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1500 from microsoftgraph/v1.0/pipelinebuild/87032
Generated v1.0 models and request builders using Typewriter
- Loading branch information
Showing
51 changed files
with
3,114 additions
and
3 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/Microsoft.Graph/Generated/model/AddLargeGalleryViewOperation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Add Large Gallery View Operation. | ||
/// </summary> | ||
public partial class AddLargeGalleryViewOperation : CommsOperation | ||
{ | ||
|
||
///<summary> | ||
/// The AddLargeGalleryViewOperation constructor | ||
///</summary> | ||
public AddLargeGalleryViewOperation() | ||
{ | ||
this.ODataType = "microsoft.graph.addLargeGalleryViewOperation"; | ||
} | ||
|
||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type AuthorizationInfo. | ||
/// </summary> | ||
[JsonConverter(typeof(DerivedTypeConverter<AuthorizationInfo>))] | ||
public partial class AuthorizationInfo | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets certificateUserIds. | ||
/// </summary> | ||
[JsonPropertyName("certificateUserIds")] | ||
public IEnumerable<string> CertificateUserIds { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonPropertyName("@odata.type")] | ||
public string ODataType { get; set; } | ||
|
||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
src/Microsoft.Graph/Generated/model/BroadcastMeetingCaptionSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type BroadcastMeetingCaptionSettings. | ||
/// </summary> | ||
[JsonConverter(typeof(DerivedTypeConverter<BroadcastMeetingCaptionSettings>))] | ||
public partial class BroadcastMeetingCaptionSettings | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets isCaptionEnabled. | ||
/// Indicates whether captions are enabled for this Teams live event. | ||
/// </summary> | ||
[JsonPropertyName("isCaptionEnabled")] | ||
public bool? IsCaptionEnabled { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets spokenLanguage. | ||
/// The spoken language. | ||
/// </summary> | ||
[JsonPropertyName("spokenLanguage")] | ||
public string SpokenLanguage { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets translationLanguages. | ||
/// The translation languages (choose up to 6). | ||
/// </summary> | ||
[JsonPropertyName("translationLanguages")] | ||
public IEnumerable<string> TranslationLanguages { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonPropertyName("@odata.type")] | ||
public string ODataType { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/Microsoft.Graph/Generated/model/CallAddLargeGalleryViewRequestBody.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: MethodRequestBody.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type CallAddLargeGalleryViewRequestBody. | ||
/// </summary> | ||
public partial class CallAddLargeGalleryViewRequestBody | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets ClientContext. | ||
/// </summary> | ||
[JsonPropertyName("clientContext")] | ||
public string ClientContext { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Teamwork Tag. | ||
/// </summary> | ||
[JsonConverter(typeof(DerivedTypeConverter<TeamworkTag>))] | ||
public partial class TeamworkTag : Entity | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets description. | ||
/// </summary> | ||
[JsonPropertyName("description")] | ||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets display name. | ||
/// </summary> | ||
[JsonPropertyName("displayName")] | ||
public string DisplayName { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets member count. | ||
/// </summary> | ||
[JsonPropertyName("memberCount")] | ||
public Int32? MemberCount { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets tag type. | ||
/// </summary> | ||
[JsonPropertyName("tagType")] | ||
public TeamworkTagType? TagType { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets team id. | ||
/// </summary> | ||
[JsonPropertyName("teamId")] | ||
public string TeamId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets members. | ||
/// </summary> | ||
[JsonPropertyName("members")] | ||
public ITeamworkTagMembersCollectionPage Members { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets membersNextLink. | ||
/// </summary> | ||
[JsonPropertyName("members@odata.nextLink")] | ||
[JsonConverter(typeof(NextLinkConverter))] | ||
public string MembersNextLink { get; set; } | ||
|
||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Teamwork Tag Member. | ||
/// </summary> | ||
public partial class TeamworkTagMember : Entity | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets display name. | ||
/// </summary> | ||
[JsonPropertyName("displayName")] | ||
public string DisplayName { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets tenant id. | ||
/// </summary> | ||
[JsonPropertyName("tenantId")] | ||
public string TenantId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets user id. | ||
/// </summary> | ||
[JsonPropertyName("userId")] | ||
public string UserId { get; set; } | ||
|
||
} | ||
} | ||
|
Oops, something went wrong.