Skip to content

Commit 23bfc2f

Browse files
authored
Merge pull request #1643 from microsoftgraph/dev
Release 4.54.0
2 parents efe5931 + 1d5ca7b commit 23bfc2f

61 files changed

Lines changed: 3825 additions & 8 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.

src/Microsoft.Graph/Generated/callrecords/model/PstnCallLogRow.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public partial class PstnCallLogRow
7979

8080
/// <summary>
8181
/// Gets or sets currency.
82-
/// Type of currency used to calculate the cost of the call (ISO 4217).
82+
/// Type of currency used to calculate the cost of the call. For details, see (ISO 4217.
8383
/// </summary>
8484
[JsonPropertyName("currency")]
8585
public string Currency { get; set; }
@@ -149,14 +149,14 @@ public partial class PstnCallLogRow
149149

150150
/// <summary>
151151
/// Gets or sets tenantCountryCode.
152-
/// Country code of the tenant, ISO 3166-1 alpha-2.
152+
/// Country code of the tenant. For details, see ISO 3166-1 alpha-2.
153153
/// </summary>
154154
[JsonPropertyName("tenantCountryCode")]
155155
public string TenantCountryCode { get; set; }
156156

157157
/// <summary>
158158
/// Gets or sets usageCountryCode.
159-
/// Country code of the user, ISO 3166-1 alpha-2.
159+
/// Country code of the user. For details, see ISO 3166-1 alpha-2.
160160
/// </summary>
161161
[JsonPropertyName("usageCountryCode")]
162162
public string UsageCountryCode { get; set; }
@@ -177,7 +177,7 @@ public partial class PstnCallLogRow
177177

178178
/// <summary>
179179
/// Gets or sets userPrincipalName.
180-
/// UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address.
180+
/// The user principal name (sign-in name) in Azure Active Directory. This is usually the same as the user's SIP address, and can be same as the user's e-mail address.
181181
/// </summary>
182182
[JsonPropertyName("userPrincipalName")]
183183
public string UserPrincipalName { get; set; }
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 AccessPackageAnswer.
19+
/// </summary>
20+
[JsonConverter(typeof(DerivedTypeConverter<AccessPackageAnswer>))]
21+
public partial class AccessPackageAnswer
22+
{
23+
24+
///<summary>
25+
/// The internal AccessPackageAnswer constructor
26+
///</summary>
27+
protected internal AccessPackageAnswer()
28+
{
29+
// Don't allow initialization of abstract complex types
30+
}
31+
32+
/// <summary>
33+
/// Gets or sets displayValue.
34+
/// The localized display value shown to the requestor and approvers.
35+
/// </summary>
36+
[JsonPropertyName("displayValue")]
37+
public string DisplayValue { get; set; }
38+
39+
/// <summary>
40+
/// Gets or sets answeredQuestion.
41+
/// </summary>
42+
[JsonPropertyName("answeredQuestion")]
43+
public AccessPackageQuestion AnsweredQuestion { 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+
}
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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 AccessPackageAnswerChoice.
19+
/// </summary>
20+
[JsonConverter(typeof(DerivedTypeConverter<AccessPackageAnswerChoice>))]
21+
public partial class AccessPackageAnswerChoice
22+
{
23+
24+
/// <summary>
25+
/// Gets or sets actualValue.
26+
/// The actual value of the selected choice. This is typically a string value which is understandable by applications. Required.
27+
/// </summary>
28+
[JsonPropertyName("actualValue")]
29+
public string ActualValue { get; set; }
30+
31+
/// <summary>
32+
/// Gets or sets localizations.
33+
/// The text of the answer choice represented in a format for a specific locale.
34+
/// </summary>
35+
[JsonPropertyName("localizations")]
36+
public IEnumerable<AccessPackageLocalizedText> Localizations { get; set; }
37+
38+
/// <summary>
39+
/// Gets or sets text.
40+
/// </summary>
41+
[JsonPropertyName("text")]
42+
public string Text { get; set; }
43+
44+
/// <summary>
45+
/// Gets or sets additional data.
46+
/// </summary>
47+
[JsonExtensionData]
48+
public IDictionary<string, object> AdditionalData { get; set; }
49+
50+
/// <summary>
51+
/// Gets or sets @odata.type.
52+
/// </summary>
53+
[JsonPropertyName("@odata.type")]
54+
public string ODataType { get; set; }
55+
56+
}
57+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 AccessPackageAnswerString.
19+
/// </summary>
20+
public partial class AccessPackageAnswerString : AccessPackageAnswer
21+
{
22+
/// <summary>
23+
/// Initializes a new instance of the <see cref="AccessPackageAnswerString"/> class.
24+
/// </summary>
25+
public AccessPackageAnswerString()
26+
{
27+
this.ODataType = "microsoft.graph.accessPackageAnswerString";
28+
}
29+
30+
/// <summary>
31+
/// Gets or sets value.
32+
/// The value stored on the requestor's user profile, if this answer is configured to be stored as a specific attribute.
33+
/// </summary>
34+
[JsonPropertyName("value")]
35+
public string Value { get; set; }
36+
37+
}
38+
}

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,19 @@ public partial class AccessPackageAssignmentPolicy : Entity
112112
[JsonPropertyName("catalog")]
113113
public AccessPackageCatalog Catalog { get; set; }
114114

115+
/// <summary>
116+
/// Gets or sets questions.
117+
/// </summary>
118+
[JsonPropertyName("questions")]
119+
public IAccessPackageAssignmentPolicyQuestionsCollectionPage Questions { get; set; }
120+
121+
/// <summary>
122+
/// Gets or sets questionsNextLink.
123+
/// </summary>
124+
[JsonPropertyName("questions@odata.nextLink")]
125+
[JsonConverter(typeof(NextLinkConverter))]
126+
public string QuestionsNextLink { get; set; }
127+
115128
}
116129
}
117130

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ namespace Microsoft.Graph
2121
public partial class AccessPackageAssignmentRequestObject : Entity
2222
{
2323

24+
/// <summary>
25+
/// Gets or sets answers.
26+
/// Answers provided by the requestor to accessPackageQuestions asked of them at the time of request.
27+
/// </summary>
28+
[JsonPropertyName("answers")]
29+
public IEnumerable<AccessPackageAnswer> Answers { get; set; }
30+
2431
/// <summary>
2532
/// Gets or sets completed date time.
2633
/// The date of the end of processing, either successful or failure, of a request. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ public partial class AccessPackageAssignmentRequestRequirements
7070
[JsonPropertyName("schedule")]
7171
public EntitlementManagementSchedule Schedule { get; set; }
7272

73+
/// <summary>
74+
/// Gets or sets questions.
75+
/// </summary>
76+
[JsonPropertyName("questions")]
77+
public IEnumerable<AccessPackageQuestion> Questions { get; set; }
78+
7379
/// <summary>
7480
/// Gets or sets additional data.
7581
/// </summary>
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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 AccessPackageLocalizedText.
19+
/// </summary>
20+
[JsonConverter(typeof(DerivedTypeConverter<AccessPackageLocalizedText>))]
21+
public partial class AccessPackageLocalizedText
22+
{
23+
24+
/// <summary>
25+
/// Gets or sets languageCode.
26+
/// The language code that text is in. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. Required.
27+
/// </summary>
28+
[JsonPropertyName("languageCode")]
29+
public string LanguageCode { get; set; }
30+
31+
/// <summary>
32+
/// Gets or sets text.
33+
/// The question in the specific language. Required.
34+
/// </summary>
35+
[JsonPropertyName("text")]
36+
public string Text { get; set; }
37+
38+
/// <summary>
39+
/// Gets or sets additional data.
40+
/// </summary>
41+
[JsonExtensionData]
42+
public IDictionary<string, object> AdditionalData { get; set; }
43+
44+
/// <summary>
45+
/// Gets or sets @odata.type.
46+
/// </summary>
47+
[JsonPropertyName("@odata.type")]
48+
public string ODataType { get; set; }
49+
50+
}
51+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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 Access Package Multiple Choice Question.
19+
/// </summary>
20+
public partial class AccessPackageMultipleChoiceQuestion : AccessPackageQuestion
21+
{
22+
23+
///<summary>
24+
/// The AccessPackageMultipleChoiceQuestion constructor
25+
///</summary>
26+
public AccessPackageMultipleChoiceQuestion()
27+
{
28+
this.ODataType = "microsoft.graph.accessPackageMultipleChoiceQuestion";
29+
}
30+
31+
/// <summary>
32+
/// Gets or sets choices.
33+
/// List of answer choices.
34+
/// </summary>
35+
[JsonPropertyName("choices")]
36+
public IEnumerable<AccessPackageAnswerChoice> Choices { get; set; }
37+
38+
/// <summary>
39+
/// Gets or sets is multiple selection allowed.
40+
/// Indicates whether requestor can select multiple choices as their answer.
41+
/// </summary>
42+
[JsonPropertyName("isMultipleSelectionAllowed")]
43+
public bool? IsMultipleSelectionAllowed { get; set; }
44+
45+
}
46+
}
47+

0 commit comments

Comments
 (0)