@microsoft/msgraph-sdk 1.0.0-preview.72 → 1.0.0-preview.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/models/index.d.ts CHANGED
@@ -11,7 +11,7 @@ export interface AadUserConversationMember extends ConversationMember, Parsable
11
11
  */
12
12
  email?: string | null;
13
13
  /**
14
- * TenantId which the Microsoft Entra user belongs to.
14
+ * The tenant ID of the Microsoft Entra user.
15
15
  */
16
16
  tenantId?: string | null;
17
17
  /**
@@ -19,7 +19,7 @@ export interface AadUserConversationMember extends ConversationMember, Parsable
19
19
  */
20
20
  user?: User | null;
21
21
  /**
22
- * The guid of the user.
22
+ * The user ID of the Microsoft Entra user.
23
23
  */
24
24
  userId?: string | null;
25
25
  }
@@ -653,6 +653,8 @@ export interface AccessPackageCollectionResponse extends BaseCollectionPaginatio
653
653
  value?: AccessPackage[] | null;
654
654
  }
655
655
  export type AccessPackageCustomExtensionStage = (typeof AccessPackageCustomExtensionStageObject)[keyof typeof AccessPackageCustomExtensionStageObject];
656
+ export interface AccessPackageDynamicApprovalStage extends AccessPackageApprovalStage, Parsable {
657
+ }
656
658
  export type AccessPackageExternalUserLifecycleAction = (typeof AccessPackageExternalUserLifecycleActionObject)[keyof typeof AccessPackageExternalUserLifecycleActionObject];
657
659
  export interface AccessPackageLocalizedText extends AdditionalDataHolder, BackedModel, Parsable {
658
660
  /**
@@ -724,6 +726,8 @@ export interface AccessPackageQuestionCollectionResponse extends BaseCollectionP
724
726
  */
725
727
  value?: AccessPackageQuestion[] | null;
726
728
  }
729
+ export interface AccessPackageRequestApprovalStageCallbackConfiguration extends CustomExtensionCallbackConfiguration, Parsable {
730
+ }
727
731
  export type AccessPackageRequestState = (typeof AccessPackageRequestStateObject)[keyof typeof AccessPackageRequestStateObject];
728
732
  export type AccessPackageRequestType = (typeof AccessPackageRequestTypeObject)[keyof typeof AccessPackageRequestTypeObject];
729
733
  export interface AccessPackageResource extends Entity, Parsable {
@@ -2287,6 +2291,96 @@ export interface AiUser extends Entity, Parsable {
2287
2291
  */
2288
2292
  interactionHistory?: AiInteractionHistory | null;
2289
2293
  }
2294
+ export interface AkamaiAttackGroupActionModel extends AdditionalDataHolder, BackedModel, Parsable {
2295
+ /**
2296
+ * The action property
2297
+ */
2298
+ action?: string | null;
2299
+ /**
2300
+ * Stores model information.
2301
+ */
2302
+ backingStoreEnabled?: boolean | null;
2303
+ /**
2304
+ * The group property
2305
+ */
2306
+ group?: string | null;
2307
+ /**
2308
+ * The OdataType property
2309
+ */
2310
+ odataType?: string | null;
2311
+ }
2312
+ export interface AkamaiCustomRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
2313
+ /**
2314
+ * The action property
2315
+ */
2316
+ action?: string | null;
2317
+ /**
2318
+ * Stores model information.
2319
+ */
2320
+ backingStoreEnabled?: boolean | null;
2321
+ /**
2322
+ * The name property
2323
+ */
2324
+ name?: string | null;
2325
+ /**
2326
+ * The OdataType property
2327
+ */
2328
+ odataType?: string | null;
2329
+ /**
2330
+ * The ruleId property
2331
+ */
2332
+ ruleId?: string | null;
2333
+ }
2334
+ export interface AkamaiRapidRulesModel extends AdditionalDataHolder, BackedModel, Parsable {
2335
+ /**
2336
+ * Stores model information.
2337
+ */
2338
+ backingStoreEnabled?: boolean | null;
2339
+ /**
2340
+ * The defaultAction property
2341
+ */
2342
+ defaultAction?: string | null;
2343
+ /**
2344
+ * The isEnabled property
2345
+ */
2346
+ isEnabled?: boolean | null;
2347
+ /**
2348
+ * The OdataType property
2349
+ */
2350
+ odataType?: string | null;
2351
+ }
2352
+ export interface AkamaiVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
2353
+ /**
2354
+ * The activeAttackGroups property
2355
+ */
2356
+ activeAttackGroups?: AkamaiAttackGroupActionModel[] | null;
2357
+ /**
2358
+ * The activeCustomRules property
2359
+ */
2360
+ activeCustomRules?: AkamaiCustomRuleModel[] | null;
2361
+ /**
2362
+ * The rapidRules property
2363
+ */
2364
+ rapidRules?: AkamaiRapidRulesModel | null;
2365
+ }
2366
+ export interface AkamaiWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
2367
+ /**
2368
+ * The accessToken property
2369
+ */
2370
+ accessToken?: string | null;
2371
+ /**
2372
+ * The clientSecret property
2373
+ */
2374
+ clientSecret?: string | null;
2375
+ /**
2376
+ * The clientToken property
2377
+ */
2378
+ clientToken?: string | null;
2379
+ /**
2380
+ * The hostPrefix property
2381
+ */
2382
+ hostPrefix?: string | null;
2383
+ }
2290
2384
  export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
2291
2385
  /**
2292
2386
  * Stores model information.
@@ -2692,7 +2786,7 @@ export interface AndroidCompliancePolicy extends DeviceCompliancePolicy, Parsabl
2692
2786
  */
2693
2787
  passwordRequiredType?: AndroidRequiredPasswordType | null;
2694
2788
  /**
2695
- * Devices must not be jailbroken or rooted.
2789
+ * Indicates the device should not be rooted. When TRUE, if the device is detected as rooted it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device rooted state. Default is FALSE.
2696
2790
  */
2697
2791
  securityBlockJailbrokenDevices?: boolean | null;
2698
2792
  /**
@@ -3121,7 +3215,7 @@ export interface AndroidStoreApp extends MobileApp, Parsable {
3121
3215
  */
3122
3216
  minimumSupportedOperatingSystem?: AndroidMinimumOperatingSystem | null;
3123
3217
  /**
3124
- * The package identifier.
3218
+ * The package identifier. This property is read-only.
3125
3219
  */
3126
3220
  packageId?: string | null;
3127
3221
  }
@@ -3180,7 +3274,7 @@ export interface AndroidWorkProfileCompliancePolicy extends DeviceCompliancePoli
3180
3274
  */
3181
3275
  passwordRequiredType?: AndroidRequiredPasswordType | null;
3182
3276
  /**
3183
- * Devices must not be jailbroken or rooted.
3277
+ * Indicates the device should not be rooted. When TRUE, if the device is detected as rooted it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device rooted state. Default is FALSE.
3184
3278
  */
3185
3279
  securityBlockJailbrokenDevices?: boolean | null;
3186
3280
  /**
@@ -3200,11 +3294,11 @@ export interface AndroidWorkProfileCompliancePolicy extends DeviceCompliancePoli
3200
3294
  */
3201
3295
  securityRequireGooglePlayServices?: boolean | null;
3202
3296
  /**
3203
- * Require the device to pass the SafetyNet basic integrity check.
3297
+ * Require the device to pass the Play Integrity basic integrity check.
3204
3298
  */
3205
3299
  securityRequireSafetyNetAttestationBasicIntegrity?: boolean | null;
3206
3300
  /**
3207
- * Require the device to pass the SafetyNet certified device check.
3301
+ * Require the device to pass the Play Integrity device integrity check.
3208
3302
  */
3209
3303
  securityRequireSafetyNetAttestationCertifiedDevice?: boolean | null;
3210
3304
  /**
@@ -3561,7 +3655,7 @@ export interface ApplePushNotificationCertificate extends Entity, Parsable {
3561
3655
  */
3562
3656
  appleIdentifier?: string | null;
3563
3657
  /**
3564
- * Not yet documented
3658
+ * The certificate property
3565
3659
  */
3566
3660
  certificate?: string | null;
3567
3661
  /**
@@ -3819,7 +3913,7 @@ export interface ApplicationServicePrincipal extends AdditionalDataHolder, Backe
3819
3913
  }
3820
3914
  export interface ApplicationTemplate extends Entity, Parsable {
3821
3915
  /**
3822
- * The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting.
3916
+ * The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer, Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting. Supports $filter (contains).
3823
3917
  */
3824
3918
  categories?: string[] | null;
3825
3919
  /**
@@ -3827,7 +3921,7 @@ export interface ApplicationTemplate extends Entity, Parsable {
3827
3921
  */
3828
3922
  description?: string | null;
3829
3923
  /**
3830
- * The name of the application.
3924
+ * The name of the application. Supports $filter (contains).
3831
3925
  */
3832
3926
  displayName?: string | null;
3833
3927
  /**
@@ -4388,6 +4482,12 @@ export interface AssignmentOrder extends AdditionalDataHolder, BackedModel, Pars
4388
4482
  */
4389
4483
  order?: string[] | null;
4390
4484
  }
4485
+ export interface AssignmentRequestApprovalStageCallbackData extends AccessPackageAssignmentRequestCallbackData, Parsable {
4486
+ /**
4487
+ * The stage in the approval decision.
4488
+ */
4489
+ approvalStage?: AccessPackageApprovalStage | null;
4490
+ }
4391
4491
  export type AssignmentType = (typeof AssignmentTypeObject)[keyof typeof AssignmentTypeObject];
4392
4492
  export interface AssociatedTeamInfo extends Parsable, TeamInfo {
4393
4493
  }
@@ -7974,11 +8074,11 @@ export interface CallEvent extends Entity, Parsable {
7974
8074
  */
7975
8075
  callEventType?: CallEventType | null;
7976
8076
  /**
7977
- * The eventDateTime property
8077
+ * The date and time when the event occurred. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
7978
8078
  */
7979
8079
  eventDateTime?: Date | null;
7980
8080
  /**
7981
- * The participants property
8081
+ * Participants collection for the call event.
7982
8082
  */
7983
8083
  participants?: Participant[] | null;
7984
8084
  }
@@ -9312,6 +9412,9 @@ export interface CloudClipboardRoot extends Entity, Parsable {
9312
9412
  */
9313
9413
  items?: CloudClipboardItem[] | null;
9314
9414
  }
9415
+ /**
9416
+ * Represents a container that exposes navigation properties for cloud communications resources.
9417
+ */
9315
9418
  export interface CloudCommunications extends AdditionalDataHolder, BackedModel, Parsable {
9316
9419
  /**
9317
9420
  * Stores model information.
@@ -9329,6 +9432,10 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
9329
9432
  * The OdataType property
9330
9433
  */
9331
9434
  odataType?: string | null;
9435
+ /**
9436
+ * A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings.
9437
+ */
9438
+ onlineMeetingConversations?: OnlineMeetingEngagementConversation[] | null;
9332
9439
  /**
9333
9440
  * The onlineMeetings property
9334
9441
  */
@@ -9338,6 +9445,74 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
9338
9445
  */
9339
9446
  presences?: Presence[] | null;
9340
9447
  }
9448
+ export interface CloudFlareRuleModel extends AdditionalDataHolder, BackedModel, Parsable {
9449
+ /**
9450
+ * The action property
9451
+ */
9452
+ action?: string | null;
9453
+ /**
9454
+ * Stores model information.
9455
+ */
9456
+ backingStoreEnabled?: boolean | null;
9457
+ /**
9458
+ * The name property
9459
+ */
9460
+ name?: string | null;
9461
+ /**
9462
+ * The OdataType property
9463
+ */
9464
+ odataType?: string | null;
9465
+ /**
9466
+ * The ruleId property
9467
+ */
9468
+ ruleId?: string | null;
9469
+ }
9470
+ export interface CloudFlareRulesetModel extends AdditionalDataHolder, BackedModel, Parsable {
9471
+ /**
9472
+ * Stores model information.
9473
+ */
9474
+ backingStoreEnabled?: boolean | null;
9475
+ /**
9476
+ * The name property
9477
+ */
9478
+ name?: string | null;
9479
+ /**
9480
+ * The OdataType property
9481
+ */
9482
+ odataType?: string | null;
9483
+ /**
9484
+ * The phaseName property
9485
+ */
9486
+ phaseName?: string | null;
9487
+ /**
9488
+ * The rulesetId property
9489
+ */
9490
+ rulesetId?: string | null;
9491
+ }
9492
+ export interface CloudFlareVerifiedDetailsModel extends Parsable, WebApplicationFirewallVerifiedDetails {
9493
+ /**
9494
+ * The enabledCustomRules property
9495
+ */
9496
+ enabledCustomRules?: CloudFlareRuleModel[] | null;
9497
+ /**
9498
+ * The enabledRecommendedRulesets property
9499
+ */
9500
+ enabledRecommendedRulesets?: CloudFlareRulesetModel[] | null;
9501
+ /**
9502
+ * The zoneId property
9503
+ */
9504
+ zoneId?: string | null;
9505
+ }
9506
+ export interface CloudFlareWebApplicationFirewallProvider extends Parsable, WebApplicationFirewallProvider {
9507
+ /**
9508
+ * The apiToken property
9509
+ */
9510
+ apiToken?: string | null;
9511
+ /**
9512
+ * The zoneId property
9513
+ */
9514
+ zoneId?: string | null;
9515
+ }
9341
9516
  export interface CloudPC extends Entity, Parsable {
9342
9517
  /**
9343
9518
  * The Microsoft Entra device ID for the Cloud PC, also known as the Azure Active Directory (Azure AD) device ID, that consists of 32 characters in a GUID format. Generated on a VM joined to Microsoft Entra ID. Read-only.
@@ -12002,6 +12177,12 @@ export declare function createAccessPackageCatalogFromDiscriminatorValue(parseNo
12002
12177
  * @returns {AccessPackageCollectionResponse}
12003
12178
  */
12004
12179
  export declare function createAccessPackageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12180
+ /**
12181
+ * Creates a new instance of the appropriate class based on discriminator value
12182
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12183
+ * @returns {AccessPackageDynamicApprovalStage}
12184
+ */
12185
+ export declare function createAccessPackageDynamicApprovalStageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12005
12186
  /**
12006
12187
  * Creates a new instance of the appropriate class based on discriminator value
12007
12188
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12038,6 +12219,12 @@ export declare function createAccessPackageQuestionCollectionResponseFromDiscrim
12038
12219
  * @returns {AccessPackageQuestion}
12039
12220
  */
12040
12221
  export declare function createAccessPackageQuestionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12222
+ /**
12223
+ * Creates a new instance of the appropriate class based on discriminator value
12224
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12225
+ * @returns {AccessPackageRequestApprovalStageCallbackConfiguration}
12226
+ */
12227
+ export declare function createAccessPackageRequestApprovalStageCallbackConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12041
12228
  /**
12042
12229
  * Creates a new instance of the appropriate class based on discriminator value
12043
12230
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -12572,6 +12759,36 @@ export declare function createAirPrintSettingsFromDiscriminatorValue(parseNode:
12572
12759
  * @returns {AiUser}
12573
12760
  */
12574
12761
  export declare function createAiUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12762
+ /**
12763
+ * Creates a new instance of the appropriate class based on discriminator value
12764
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12765
+ * @returns {AkamaiAttackGroupActionModel}
12766
+ */
12767
+ export declare function createAkamaiAttackGroupActionModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12768
+ /**
12769
+ * Creates a new instance of the appropriate class based on discriminator value
12770
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12771
+ * @returns {AkamaiCustomRuleModel}
12772
+ */
12773
+ export declare function createAkamaiCustomRuleModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12774
+ /**
12775
+ * Creates a new instance of the appropriate class based on discriminator value
12776
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12777
+ * @returns {AkamaiRapidRulesModel}
12778
+ */
12779
+ export declare function createAkamaiRapidRulesModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12780
+ /**
12781
+ * Creates a new instance of the appropriate class based on discriminator value
12782
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12783
+ * @returns {AkamaiVerifiedDetailsModel}
12784
+ */
12785
+ export declare function createAkamaiVerifiedDetailsModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12786
+ /**
12787
+ * Creates a new instance of the appropriate class based on discriminator value
12788
+ * @param parseNode The parse node to use to read the discriminator value and create the object
12789
+ * @returns {AkamaiWebApplicationFirewallProvider}
12790
+ */
12791
+ export declare function createAkamaiWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
12575
12792
  /**
12576
12793
  * Creates a new instance of the appropriate class based on discriminator value
12577
12794
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -13040,6 +13257,12 @@ export declare function createAssignedTrainingInfoFromDiscriminatorValue(parseNo
13040
13257
  * @returns {AssignmentOrder}
13041
13258
  */
13042
13259
  export declare function createAssignmentOrderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13260
+ /**
13261
+ * Creates a new instance of the appropriate class based on discriminator value
13262
+ * @param parseNode The parse node to use to read the discriminator value and create the object
13263
+ * @returns {AssignmentRequestApprovalStageCallbackData}
13264
+ */
13265
+ export declare function createAssignmentRequestApprovalStageCallbackDataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
13043
13266
  /**
13044
13267
  * Creates a new instance of the appropriate class based on discriminator value
13045
13268
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -14504,6 +14727,30 @@ export declare function createCloudClipboardRootFromDiscriminatorValue(parseNode
14504
14727
  * @returns {CloudCommunications}
14505
14728
  */
14506
14729
  export declare function createCloudCommunicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14730
+ /**
14731
+ * Creates a new instance of the appropriate class based on discriminator value
14732
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14733
+ * @returns {CloudFlareRuleModel}
14734
+ */
14735
+ export declare function createCloudFlareRuleModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14736
+ /**
14737
+ * Creates a new instance of the appropriate class based on discriminator value
14738
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14739
+ * @returns {CloudFlareRulesetModel}
14740
+ */
14741
+ export declare function createCloudFlareRulesetModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14742
+ /**
14743
+ * Creates a new instance of the appropriate class based on discriminator value
14744
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14745
+ * @returns {CloudFlareVerifiedDetailsModel}
14746
+ */
14747
+ export declare function createCloudFlareVerifiedDetailsModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14748
+ /**
14749
+ * Creates a new instance of the appropriate class based on discriminator value
14750
+ * @param parseNode The parse node to use to read the discriminator value and create the object
14751
+ * @returns {CloudFlareWebApplicationFirewallProvider}
14752
+ */
14753
+ export declare function createCloudFlareWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
14507
14754
  /**
14508
14755
  * Creates a new instance of the appropriate class based on discriminator value
14509
14756
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16514,6 +16761,36 @@ export declare function createEdgeSearchEngineFromDiscriminatorValue(parseNode:
16514
16761
  * @returns {EditionUpgradeConfiguration}
16515
16762
  */
16516
16763
  export declare function createEditionUpgradeConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16764
+ /**
16765
+ * Creates a new instance of the appropriate class based on discriminator value
16766
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16767
+ * @returns {EducationAiFeedbackAudienceEngagementSettings}
16768
+ */
16769
+ export declare function createEducationAiFeedbackAudienceEngagementSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16770
+ /**
16771
+ * Creates a new instance of the appropriate class based on discriminator value
16772
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16773
+ * @returns {EducationAiFeedbackContentSettings}
16774
+ */
16775
+ export declare function createEducationAiFeedbackContentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16776
+ /**
16777
+ * Creates a new instance of the appropriate class based on discriminator value
16778
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16779
+ * @returns {EducationAiFeedbackCriteria}
16780
+ */
16781
+ export declare function createEducationAiFeedbackCriteriaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16782
+ /**
16783
+ * Creates a new instance of the appropriate class based on discriminator value
16784
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16785
+ * @returns {EducationAiFeedbackDeliverySettings}
16786
+ */
16787
+ export declare function createEducationAiFeedbackDeliverySettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16788
+ /**
16789
+ * Creates a new instance of the appropriate class based on discriminator value
16790
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16791
+ * @returns {EducationAiFeedbackSettings}
16792
+ */
16793
+ export declare function createEducationAiFeedbackSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16517
16794
  /**
16518
16795
  * Creates a new instance of the appropriate class based on discriminator value
16519
16796
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16682,6 +16959,24 @@ export declare function createEducationGradingCategoryCollectionResponseFromDisc
16682
16959
  * @returns {EducationGradingCategory}
16683
16960
  */
16684
16961
  export declare function createEducationGradingCategoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16962
+ /**
16963
+ * Creates a new instance of the appropriate class based on discriminator value
16964
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16965
+ * @returns {EducationGradingSchemeCollectionResponse}
16966
+ */
16967
+ export declare function createEducationGradingSchemeCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16968
+ /**
16969
+ * Creates a new instance of the appropriate class based on discriminator value
16970
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16971
+ * @returns {EducationGradingScheme}
16972
+ */
16973
+ export declare function createEducationGradingSchemeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16974
+ /**
16975
+ * Creates a new instance of the appropriate class based on discriminator value
16976
+ * @param parseNode The parse node to use to read the discriminator value and create the object
16977
+ * @returns {EducationGradingSchemeGrade}
16978
+ */
16979
+ export declare function createEducationGradingSchemeGradeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16685
16980
  /**
16686
16981
  * Creates a new instance of the appropriate class based on discriminator value
16687
16982
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -16808,6 +17103,36 @@ export declare function createEducationSchoolCollectionResponseFromDiscriminator
16808
17103
  * @returns {EducationSchool}
16809
17104
  */
16810
17105
  export declare function createEducationSchoolFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17106
+ /**
17107
+ * Creates a new instance of the appropriate class based on discriminator value
17108
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17109
+ * @returns {EducationSpeakerCoachAudienceEngagementSettings}
17110
+ */
17111
+ export declare function createEducationSpeakerCoachAudienceEngagementSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17112
+ /**
17113
+ * Creates a new instance of the appropriate class based on discriminator value
17114
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17115
+ * @returns {EducationSpeakerCoachContentSettings}
17116
+ */
17117
+ export declare function createEducationSpeakerCoachContentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17118
+ /**
17119
+ * Creates a new instance of the appropriate class based on discriminator value
17120
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17121
+ * @returns {EducationSpeakerCoachDeliverySettings}
17122
+ */
17123
+ export declare function createEducationSpeakerCoachDeliverySettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17124
+ /**
17125
+ * Creates a new instance of the appropriate class based on discriminator value
17126
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17127
+ * @returns {EducationSpeakerCoachSettings}
17128
+ */
17129
+ export declare function createEducationSpeakerCoachSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17130
+ /**
17131
+ * Creates a new instance of the appropriate class based on discriminator value
17132
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17133
+ * @returns {EducationSpeakerProgressResource}
17134
+ */
17135
+ export declare function createEducationSpeakerProgressResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
16811
17136
  /**
16812
17137
  * Creates a new instance of the appropriate class based on discriminator value
16813
17138
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -17018,6 +17343,60 @@ export declare function createEngagementAsyncOperationCollectionResponseFromDisc
17018
17343
  * @returns {EngagementAsyncOperation}
17019
17344
  */
17020
17345
  export declare function createEngagementAsyncOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17346
+ /**
17347
+ * Creates a new instance of the appropriate class based on discriminator value
17348
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17349
+ * @returns {EngagementConversationDiscussionMessage}
17350
+ */
17351
+ export declare function createEngagementConversationDiscussionMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17352
+ /**
17353
+ * Creates a new instance of the appropriate class based on discriminator value
17354
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17355
+ * @returns {EngagementConversation}
17356
+ */
17357
+ export declare function createEngagementConversationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17358
+ /**
17359
+ * Creates a new instance of the appropriate class based on discriminator value
17360
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17361
+ * @returns {EngagementConversationMessageCollectionResponse}
17362
+ */
17363
+ export declare function createEngagementConversationMessageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17364
+ /**
17365
+ * Creates a new instance of the appropriate class based on discriminator value
17366
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17367
+ * @returns {EngagementConversationMessage}
17368
+ */
17369
+ export declare function createEngagementConversationMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17370
+ /**
17371
+ * Creates a new instance of the appropriate class based on discriminator value
17372
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17373
+ * @returns {EngagementConversationMessageReactionCollectionResponse}
17374
+ */
17375
+ export declare function createEngagementConversationMessageReactionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17376
+ /**
17377
+ * Creates a new instance of the appropriate class based on discriminator value
17378
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17379
+ * @returns {EngagementConversationMessageReaction}
17380
+ */
17381
+ export declare function createEngagementConversationMessageReactionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17382
+ /**
17383
+ * Creates a new instance of the appropriate class based on discriminator value
17384
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17385
+ * @returns {EngagementConversationQuestionMessage}
17386
+ */
17387
+ export declare function createEngagementConversationQuestionMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17388
+ /**
17389
+ * Creates a new instance of the appropriate class based on discriminator value
17390
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17391
+ * @returns {EngagementConversationSystemMessage}
17392
+ */
17393
+ export declare function createEngagementConversationSystemMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17394
+ /**
17395
+ * Creates a new instance of the appropriate class based on discriminator value
17396
+ * @param parseNode The parse node to use to read the discriminator value and create the object
17397
+ * @returns {EngagementIdentitySet}
17398
+ */
17399
+ export declare function createEngagementIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17021
17400
  /**
17022
17401
  * Creates a new instance of the appropriate class based on discriminator value
17023
17402
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -17984,12 +18363,6 @@ export declare function createIosCompliancePolicyFromDiscriminatorValue(parseNod
17984
18363
  * @returns {IosCustomConfiguration}
17985
18364
  */
17986
18365
  export declare function createIosCustomConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17987
- /**
17988
- * Creates a new instance of the appropriate class based on discriminator value
17989
- * @param parseNode The parse node to use to read the discriminator value and create the object
17990
- * @returns {IosDdmLobAppAssignmentSettings}
17991
- */
17992
- export declare function createIosDdmLobAppAssignmentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
17993
18366
  /**
17994
18367
  * Creates a new instance of the appropriate class based on discriminator value
17995
18368
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20006,6 +20379,18 @@ export declare function createOnlineMeetingBaseFromDiscriminatorValue(parseNode:
20006
20379
  * @returns {OnlineMeetingCollectionResponse}
20007
20380
  */
20008
20381
  export declare function createOnlineMeetingCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20382
+ /**
20383
+ * Creates a new instance of the appropriate class based on discriminator value
20384
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20385
+ * @returns {OnlineMeetingEngagementConversationCollectionResponse}
20386
+ */
20387
+ export declare function createOnlineMeetingEngagementConversationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20388
+ /**
20389
+ * Creates a new instance of the appropriate class based on discriminator value
20390
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20391
+ * @returns {OnlineMeetingEngagementConversation}
20392
+ */
20393
+ export declare function createOnlineMeetingEngagementConversationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20009
20394
  /**
20010
20395
  * Creates a new instance of the appropriate class based on discriminator value
20011
20396
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -20090,6 +20475,12 @@ export declare function createOnPremisesExtensionAttributesFromDiscriminatorValu
20090
20475
  * @returns {OnPremisesProvisioningError}
20091
20476
  */
20092
20477
  export declare function createOnPremisesProvisioningErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20478
+ /**
20479
+ * Creates a new instance of the appropriate class based on discriminator value
20480
+ * @param parseNode The parse node to use to read the discriminator value and create the object
20481
+ * @returns {OnPremisesSyncBehavior}
20482
+ */
20483
+ export declare function createOnPremisesSyncBehaviorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
20093
20484
  /**
20094
20485
  * Creates a new instance of the appropriate class based on discriminator value
20095
20486
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21518,6 +21909,18 @@ export declare function createReadingAssignmentSubmissionCollectionResponseFromD
21518
21909
  * @returns {ReadingAssignmentSubmission}
21519
21910
  */
21520
21911
  export declare function createReadingAssignmentSubmissionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21912
+ /**
21913
+ * Creates a new instance of the appropriate class based on discriminator value
21914
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21915
+ * @returns {ReadingCoachPassageCollectionResponse}
21916
+ */
21917
+ export declare function createReadingCoachPassageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21918
+ /**
21919
+ * Creates a new instance of the appropriate class based on discriminator value
21920
+ * @param parseNode The parse node to use to read the discriminator value and create the object
21921
+ * @returns {ReadingCoachPassage}
21922
+ */
21923
+ export declare function createReadingCoachPassageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21521
21924
  /**
21522
21925
  * Creates a new instance of the appropriate class based on discriminator value
21523
21926
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -21950,6 +22353,12 @@ export declare function createRiskDetectionCollectionResponseFromDiscriminatorVa
21950
22353
  * @returns {RiskDetection}
21951
22354
  */
21952
22355
  export declare function createRiskDetectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
22356
+ /**
22357
+ * Creates a new instance of the appropriate class based on discriminator value
22358
+ * @param parseNode The parse node to use to read the discriminator value and create the object
22359
+ * @returns {RiskPreventionContainer}
22360
+ */
22361
+ export declare function createRiskPreventionContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
21953
22362
  /**
21954
22363
  * Creates a new instance of the appropriate class based on discriminator value
21955
22364
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -23090,6 +23499,18 @@ export declare function createSortPropertyFromDiscriminatorValue(parseNode: Pars
23090
23499
  * @returns {SpaApplication}
23091
23500
  */
23092
23501
  export declare function createSpaApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23502
+ /**
23503
+ * Creates a new instance of the appropriate class based on discriminator value
23504
+ * @param parseNode The parse node to use to read the discriminator value and create the object
23505
+ * @returns {SpeakerAssignmentSubmissionCollectionResponse}
23506
+ */
23507
+ export declare function createSpeakerAssignmentSubmissionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23508
+ /**
23509
+ * Creates a new instance of the appropriate class based on discriminator value
23510
+ * @param parseNode The parse node to use to read the discriminator value and create the object
23511
+ * @returns {SpeakerAssignmentSubmission}
23512
+ */
23513
+ export declare function createSpeakerAssignmentSubmissionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23093
23514
  /**
23094
23515
  * Creates a new instance of the appropriate class based on discriminator value
23095
23516
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -23804,18 +24225,6 @@ export declare function createTeamworkTagMemberFromDiscriminatorValue(parseNode:
23804
24225
  * @returns {TeamworkUserIdentity}
23805
24226
  */
23806
24227
  export declare function createTeamworkUserIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23807
- /**
23808
- * Creates a new instance of the appropriate class based on discriminator value
23809
- * @param parseNode The parse node to use to read the discriminator value and create the object
23810
- * @returns {TelecomExpenseManagementPartnerCollectionResponse}
23811
- */
23812
- export declare function createTelecomExpenseManagementPartnerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23813
- /**
23814
- * Creates a new instance of the appropriate class based on discriminator value
23815
- * @param parseNode The parse node to use to read the discriminator value and create the object
23816
- * @returns {TelecomExpenseManagementPartner}
23817
- */
23818
- export declare function createTelecomExpenseManagementPartnerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
23819
24228
  /**
23820
24229
  * Creates a new instance of the appropriate class based on discriminator value
23821
24230
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -25370,6 +25779,48 @@ export declare function createWatermarkProtectionValuesFromDiscriminatorValue(pa
25370
25779
  * @returns {WebApp}
25371
25780
  */
25372
25781
  export declare function createWebAppFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25782
+ /**
25783
+ * Creates a new instance of the appropriate class based on discriminator value
25784
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25785
+ * @returns {WebApplicationFirewallDnsConfiguration}
25786
+ */
25787
+ export declare function createWebApplicationFirewallDnsConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25788
+ /**
25789
+ * Creates a new instance of the appropriate class based on discriminator value
25790
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25791
+ * @returns {WebApplicationFirewallProviderCollectionResponse}
25792
+ */
25793
+ export declare function createWebApplicationFirewallProviderCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25794
+ /**
25795
+ * Creates a new instance of the appropriate class based on discriminator value
25796
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25797
+ * @returns {WebApplicationFirewallProvider}
25798
+ */
25799
+ export declare function createWebApplicationFirewallProviderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25800
+ /**
25801
+ * Creates a new instance of the appropriate class based on discriminator value
25802
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25803
+ * @returns {WebApplicationFirewallVerificationModelCollectionResponse}
25804
+ */
25805
+ export declare function createWebApplicationFirewallVerificationModelCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25806
+ /**
25807
+ * Creates a new instance of the appropriate class based on discriminator value
25808
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25809
+ * @returns {WebApplicationFirewallVerificationModel}
25810
+ */
25811
+ export declare function createWebApplicationFirewallVerificationModelFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25812
+ /**
25813
+ * Creates a new instance of the appropriate class based on discriminator value
25814
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25815
+ * @returns {WebApplicationFirewallVerificationResult}
25816
+ */
25817
+ export declare function createWebApplicationFirewallVerificationResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25818
+ /**
25819
+ * Creates a new instance of the appropriate class based on discriminator value
25820
+ * @param parseNode The parse node to use to read the discriminator value and create the object
25821
+ * @returns {WebApplicationFirewallVerifiedDetails}
25822
+ */
25823
+ export declare function createWebApplicationFirewallVerifiedDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
25373
25824
  /**
25374
25825
  * Creates a new instance of the appropriate class based on discriminator value
25375
25826
  * @param parseNode The parse node to use to read the discriminator value and create the object
@@ -27669,6 +28120,12 @@ export declare function deserializeIntoAccessPackageCatalogCollectionResponse(ac
27669
28120
  * @returns {Record<string, (node: ParseNode) => void>}
27670
28121
  */
27671
28122
  export declare function deserializeIntoAccessPackageCollectionResponse(accessPackageCollectionResponse?: Partial<AccessPackageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
28123
+ /**
28124
+ * The deserialization information for the current model
28125
+ * @param AccessPackageDynamicApprovalStage The instance to deserialize into.
28126
+ * @returns {Record<string, (node: ParseNode) => void>}
28127
+ */
28128
+ export declare function deserializeIntoAccessPackageDynamicApprovalStage(accessPackageDynamicApprovalStage?: Partial<AccessPackageDynamicApprovalStage> | undefined): Record<string, (node: ParseNode) => void>;
27672
28129
  /**
27673
28130
  * The deserialization information for the current model
27674
28131
  * @param AccessPackageLocalizedText The instance to deserialize into.
@@ -27699,6 +28156,12 @@ export declare function deserializeIntoAccessPackageQuestion(accessPackageQuesti
27699
28156
  * @returns {Record<string, (node: ParseNode) => void>}
27700
28157
  */
27701
28158
  export declare function deserializeIntoAccessPackageQuestionCollectionResponse(accessPackageQuestionCollectionResponse?: Partial<AccessPackageQuestionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
28159
+ /**
28160
+ * The deserialization information for the current model
28161
+ * @param AccessPackageRequestApprovalStageCallbackConfiguration The instance to deserialize into.
28162
+ * @returns {Record<string, (node: ParseNode) => void>}
28163
+ */
28164
+ export declare function deserializeIntoAccessPackageRequestApprovalStageCallbackConfiguration(accessPackageRequestApprovalStageCallbackConfiguration?: Partial<AccessPackageRequestApprovalStageCallbackConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
27702
28165
  /**
27703
28166
  * The deserialization information for the current model
27704
28167
  * @param AccessPackageResource The instance to deserialize into.
@@ -28233,6 +28696,36 @@ export declare function deserializeIntoAirPrintSettings(airPrintSettings?: Parti
28233
28696
  * @returns {Record<string, (node: ParseNode) => void>}
28234
28697
  */
28235
28698
  export declare function deserializeIntoAiUser(aiUser?: Partial<AiUser> | undefined): Record<string, (node: ParseNode) => void>;
28699
+ /**
28700
+ * The deserialization information for the current model
28701
+ * @param AkamaiAttackGroupActionModel The instance to deserialize into.
28702
+ * @returns {Record<string, (node: ParseNode) => void>}
28703
+ */
28704
+ export declare function deserializeIntoAkamaiAttackGroupActionModel(akamaiAttackGroupActionModel?: Partial<AkamaiAttackGroupActionModel> | undefined): Record<string, (node: ParseNode) => void>;
28705
+ /**
28706
+ * The deserialization information for the current model
28707
+ * @param AkamaiCustomRuleModel The instance to deserialize into.
28708
+ * @returns {Record<string, (node: ParseNode) => void>}
28709
+ */
28710
+ export declare function deserializeIntoAkamaiCustomRuleModel(akamaiCustomRuleModel?: Partial<AkamaiCustomRuleModel> | undefined): Record<string, (node: ParseNode) => void>;
28711
+ /**
28712
+ * The deserialization information for the current model
28713
+ * @param AkamaiRapidRulesModel The instance to deserialize into.
28714
+ * @returns {Record<string, (node: ParseNode) => void>}
28715
+ */
28716
+ export declare function deserializeIntoAkamaiRapidRulesModel(akamaiRapidRulesModel?: Partial<AkamaiRapidRulesModel> | undefined): Record<string, (node: ParseNode) => void>;
28717
+ /**
28718
+ * The deserialization information for the current model
28719
+ * @param AkamaiVerifiedDetailsModel The instance to deserialize into.
28720
+ * @returns {Record<string, (node: ParseNode) => void>}
28721
+ */
28722
+ export declare function deserializeIntoAkamaiVerifiedDetailsModel(akamaiVerifiedDetailsModel?: Partial<AkamaiVerifiedDetailsModel> | undefined): Record<string, (node: ParseNode) => void>;
28723
+ /**
28724
+ * The deserialization information for the current model
28725
+ * @param AkamaiWebApplicationFirewallProvider The instance to deserialize into.
28726
+ * @returns {Record<string, (node: ParseNode) => void>}
28727
+ */
28728
+ export declare function deserializeIntoAkamaiWebApplicationFirewallProvider(akamaiWebApplicationFirewallProvider?: Partial<AkamaiWebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
28236
28729
  /**
28237
28730
  * The deserialization information for the current model
28238
28731
  * @param Album The instance to deserialize into.
@@ -28701,6 +29194,12 @@ export declare function deserializeIntoAssignedTrainingInfo(assignedTrainingInfo
28701
29194
  * @returns {Record<string, (node: ParseNode) => void>}
28702
29195
  */
28703
29196
  export declare function deserializeIntoAssignmentOrder(assignmentOrder?: Partial<AssignmentOrder> | undefined): Record<string, (node: ParseNode) => void>;
29197
+ /**
29198
+ * The deserialization information for the current model
29199
+ * @param AssignmentRequestApprovalStageCallbackData The instance to deserialize into.
29200
+ * @returns {Record<string, (node: ParseNode) => void>}
29201
+ */
29202
+ export declare function deserializeIntoAssignmentRequestApprovalStageCallbackData(assignmentRequestApprovalStageCallbackData?: Partial<AssignmentRequestApprovalStageCallbackData> | undefined): Record<string, (node: ParseNode) => void>;
28704
29203
  /**
28705
29204
  * The deserialization information for the current model
28706
29205
  * @param AssociatedTeamInfo The instance to deserialize into.
@@ -30165,6 +30664,30 @@ export declare function deserializeIntoCloudClipboardRoot(cloudClipboardRoot?: P
30165
30664
  * @returns {Record<string, (node: ParseNode) => void>}
30166
30665
  */
30167
30666
  export declare function deserializeIntoCloudCommunications(cloudCommunications?: Partial<CloudCommunications> | undefined): Record<string, (node: ParseNode) => void>;
30667
+ /**
30668
+ * The deserialization information for the current model
30669
+ * @param CloudFlareRuleModel The instance to deserialize into.
30670
+ * @returns {Record<string, (node: ParseNode) => void>}
30671
+ */
30672
+ export declare function deserializeIntoCloudFlareRuleModel(cloudFlareRuleModel?: Partial<CloudFlareRuleModel> | undefined): Record<string, (node: ParseNode) => void>;
30673
+ /**
30674
+ * The deserialization information for the current model
30675
+ * @param CloudFlareRulesetModel The instance to deserialize into.
30676
+ * @returns {Record<string, (node: ParseNode) => void>}
30677
+ */
30678
+ export declare function deserializeIntoCloudFlareRulesetModel(cloudFlareRulesetModel?: Partial<CloudFlareRulesetModel> | undefined): Record<string, (node: ParseNode) => void>;
30679
+ /**
30680
+ * The deserialization information for the current model
30681
+ * @param CloudFlareVerifiedDetailsModel The instance to deserialize into.
30682
+ * @returns {Record<string, (node: ParseNode) => void>}
30683
+ */
30684
+ export declare function deserializeIntoCloudFlareVerifiedDetailsModel(cloudFlareVerifiedDetailsModel?: Partial<CloudFlareVerifiedDetailsModel> | undefined): Record<string, (node: ParseNode) => void>;
30685
+ /**
30686
+ * The deserialization information for the current model
30687
+ * @param CloudFlareWebApplicationFirewallProvider The instance to deserialize into.
30688
+ * @returns {Record<string, (node: ParseNode) => void>}
30689
+ */
30690
+ export declare function deserializeIntoCloudFlareWebApplicationFirewallProvider(cloudFlareWebApplicationFirewallProvider?: Partial<CloudFlareWebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
30168
30691
  /**
30169
30692
  * The deserialization information for the current model
30170
30693
  * @param CloudPC The instance to deserialize into.
@@ -32175,6 +32698,36 @@ export declare function deserializeIntoEdgeSearchEngineCustom(edgeSearchEngineCu
32175
32698
  * @returns {Record<string, (node: ParseNode) => void>}
32176
32699
  */
32177
32700
  export declare function deserializeIntoEditionUpgradeConfiguration(editionUpgradeConfiguration?: Partial<EditionUpgradeConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
32701
+ /**
32702
+ * The deserialization information for the current model
32703
+ * @param EducationAiFeedbackAudienceEngagementSettings The instance to deserialize into.
32704
+ * @returns {Record<string, (node: ParseNode) => void>}
32705
+ */
32706
+ export declare function deserializeIntoEducationAiFeedbackAudienceEngagementSettings(educationAiFeedbackAudienceEngagementSettings?: Partial<EducationAiFeedbackAudienceEngagementSettings> | undefined): Record<string, (node: ParseNode) => void>;
32707
+ /**
32708
+ * The deserialization information for the current model
32709
+ * @param EducationAiFeedbackContentSettings The instance to deserialize into.
32710
+ * @returns {Record<string, (node: ParseNode) => void>}
32711
+ */
32712
+ export declare function deserializeIntoEducationAiFeedbackContentSettings(educationAiFeedbackContentSettings?: Partial<EducationAiFeedbackContentSettings> | undefined): Record<string, (node: ParseNode) => void>;
32713
+ /**
32714
+ * The deserialization information for the current model
32715
+ * @param EducationAiFeedbackCriteria The instance to deserialize into.
32716
+ * @returns {Record<string, (node: ParseNode) => void>}
32717
+ */
32718
+ export declare function deserializeIntoEducationAiFeedbackCriteria(educationAiFeedbackCriteria?: Partial<EducationAiFeedbackCriteria> | undefined): Record<string, (node: ParseNode) => void>;
32719
+ /**
32720
+ * The deserialization information for the current model
32721
+ * @param EducationAiFeedbackDeliverySettings The instance to deserialize into.
32722
+ * @returns {Record<string, (node: ParseNode) => void>}
32723
+ */
32724
+ export declare function deserializeIntoEducationAiFeedbackDeliverySettings(educationAiFeedbackDeliverySettings?: Partial<EducationAiFeedbackDeliverySettings> | undefined): Record<string, (node: ParseNode) => void>;
32725
+ /**
32726
+ * The deserialization information for the current model
32727
+ * @param EducationAiFeedbackSettings The instance to deserialize into.
32728
+ * @returns {Record<string, (node: ParseNode) => void>}
32729
+ */
32730
+ export declare function deserializeIntoEducationAiFeedbackSettings(educationAiFeedbackSettings?: Partial<EducationAiFeedbackSettings> | undefined): Record<string, (node: ParseNode) => void>;
32178
32731
  /**
32179
32732
  * The deserialization information for the current model
32180
32733
  * @param EducationAssignment The instance to deserialize into.
@@ -32343,6 +32896,24 @@ export declare function deserializeIntoEducationGradingCategory(educationGrading
32343
32896
  * @returns {Record<string, (node: ParseNode) => void>}
32344
32897
  */
32345
32898
  export declare function deserializeIntoEducationGradingCategoryCollectionResponse(educationGradingCategoryCollectionResponse?: Partial<EducationGradingCategoryCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32899
+ /**
32900
+ * The deserialization information for the current model
32901
+ * @param EducationGradingScheme The instance to deserialize into.
32902
+ * @returns {Record<string, (node: ParseNode) => void>}
32903
+ */
32904
+ export declare function deserializeIntoEducationGradingScheme(educationGradingScheme?: Partial<EducationGradingScheme> | undefined): Record<string, (node: ParseNode) => void>;
32905
+ /**
32906
+ * The deserialization information for the current model
32907
+ * @param EducationGradingSchemeCollectionResponse The instance to deserialize into.
32908
+ * @returns {Record<string, (node: ParseNode) => void>}
32909
+ */
32910
+ export declare function deserializeIntoEducationGradingSchemeCollectionResponse(educationGradingSchemeCollectionResponse?: Partial<EducationGradingSchemeCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
32911
+ /**
32912
+ * The deserialization information for the current model
32913
+ * @param EducationGradingSchemeGrade The instance to deserialize into.
32914
+ * @returns {Record<string, (node: ParseNode) => void>}
32915
+ */
32916
+ export declare function deserializeIntoEducationGradingSchemeGrade(educationGradingSchemeGrade?: Partial<EducationGradingSchemeGrade> | undefined): Record<string, (node: ParseNode) => void>;
32346
32917
  /**
32347
32918
  * The deserialization information for the current model
32348
32919
  * @param EducationItemBody The instance to deserialize into.
@@ -32469,6 +33040,36 @@ export declare function deserializeIntoEducationSchool(educationSchool?: Partial
32469
33040
  * @returns {Record<string, (node: ParseNode) => void>}
32470
33041
  */
32471
33042
  export declare function deserializeIntoEducationSchoolCollectionResponse(educationSchoolCollectionResponse?: Partial<EducationSchoolCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
33043
+ /**
33044
+ * The deserialization information for the current model
33045
+ * @param EducationSpeakerCoachAudienceEngagementSettings The instance to deserialize into.
33046
+ * @returns {Record<string, (node: ParseNode) => void>}
33047
+ */
33048
+ export declare function deserializeIntoEducationSpeakerCoachAudienceEngagementSettings(educationSpeakerCoachAudienceEngagementSettings?: Partial<EducationSpeakerCoachAudienceEngagementSettings> | undefined): Record<string, (node: ParseNode) => void>;
33049
+ /**
33050
+ * The deserialization information for the current model
33051
+ * @param EducationSpeakerCoachContentSettings The instance to deserialize into.
33052
+ * @returns {Record<string, (node: ParseNode) => void>}
33053
+ */
33054
+ export declare function deserializeIntoEducationSpeakerCoachContentSettings(educationSpeakerCoachContentSettings?: Partial<EducationSpeakerCoachContentSettings> | undefined): Record<string, (node: ParseNode) => void>;
33055
+ /**
33056
+ * The deserialization information for the current model
33057
+ * @param EducationSpeakerCoachDeliverySettings The instance to deserialize into.
33058
+ * @returns {Record<string, (node: ParseNode) => void>}
33059
+ */
33060
+ export declare function deserializeIntoEducationSpeakerCoachDeliverySettings(educationSpeakerCoachDeliverySettings?: Partial<EducationSpeakerCoachDeliverySettings> | undefined): Record<string, (node: ParseNode) => void>;
33061
+ /**
33062
+ * The deserialization information for the current model
33063
+ * @param EducationSpeakerCoachSettings The instance to deserialize into.
33064
+ * @returns {Record<string, (node: ParseNode) => void>}
33065
+ */
33066
+ export declare function deserializeIntoEducationSpeakerCoachSettings(educationSpeakerCoachSettings?: Partial<EducationSpeakerCoachSettings> | undefined): Record<string, (node: ParseNode) => void>;
33067
+ /**
33068
+ * The deserialization information for the current model
33069
+ * @param EducationSpeakerProgressResource The instance to deserialize into.
33070
+ * @returns {Record<string, (node: ParseNode) => void>}
33071
+ */
33072
+ export declare function deserializeIntoEducationSpeakerProgressResource(educationSpeakerProgressResource?: Partial<EducationSpeakerProgressResource> | undefined): Record<string, (node: ParseNode) => void>;
32472
33073
  /**
32473
33074
  * The deserialization information for the current model
32474
33075
  * @param EducationStudent The instance to deserialize into.
@@ -32679,6 +33280,60 @@ export declare function deserializeIntoEngagementAsyncOperation(engagementAsyncO
32679
33280
  * @returns {Record<string, (node: ParseNode) => void>}
32680
33281
  */
32681
33282
  export declare function deserializeIntoEngagementAsyncOperationCollectionResponse(engagementAsyncOperationCollectionResponse?: Partial<EngagementAsyncOperationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
33283
+ /**
33284
+ * The deserialization information for the current model
33285
+ * @param EngagementConversation The instance to deserialize into.
33286
+ * @returns {Record<string, (node: ParseNode) => void>}
33287
+ */
33288
+ export declare function deserializeIntoEngagementConversation(engagementConversation?: Partial<EngagementConversation> | undefined): Record<string, (node: ParseNode) => void>;
33289
+ /**
33290
+ * The deserialization information for the current model
33291
+ * @param EngagementConversationDiscussionMessage The instance to deserialize into.
33292
+ * @returns {Record<string, (node: ParseNode) => void>}
33293
+ */
33294
+ export declare function deserializeIntoEngagementConversationDiscussionMessage(engagementConversationDiscussionMessage?: Partial<EngagementConversationDiscussionMessage> | undefined): Record<string, (node: ParseNode) => void>;
33295
+ /**
33296
+ * The deserialization information for the current model
33297
+ * @param EngagementConversationMessage The instance to deserialize into.
33298
+ * @returns {Record<string, (node: ParseNode) => void>}
33299
+ */
33300
+ export declare function deserializeIntoEngagementConversationMessage(engagementConversationMessage?: Partial<EngagementConversationMessage> | undefined): Record<string, (node: ParseNode) => void>;
33301
+ /**
33302
+ * The deserialization information for the current model
33303
+ * @param EngagementConversationMessageCollectionResponse The instance to deserialize into.
33304
+ * @returns {Record<string, (node: ParseNode) => void>}
33305
+ */
33306
+ export declare function deserializeIntoEngagementConversationMessageCollectionResponse(engagementConversationMessageCollectionResponse?: Partial<EngagementConversationMessageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
33307
+ /**
33308
+ * The deserialization information for the current model
33309
+ * @param EngagementConversationMessageReaction The instance to deserialize into.
33310
+ * @returns {Record<string, (node: ParseNode) => void>}
33311
+ */
33312
+ export declare function deserializeIntoEngagementConversationMessageReaction(engagementConversationMessageReaction?: Partial<EngagementConversationMessageReaction> | undefined): Record<string, (node: ParseNode) => void>;
33313
+ /**
33314
+ * The deserialization information for the current model
33315
+ * @param EngagementConversationMessageReactionCollectionResponse The instance to deserialize into.
33316
+ * @returns {Record<string, (node: ParseNode) => void>}
33317
+ */
33318
+ export declare function deserializeIntoEngagementConversationMessageReactionCollectionResponse(engagementConversationMessageReactionCollectionResponse?: Partial<EngagementConversationMessageReactionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
33319
+ /**
33320
+ * The deserialization information for the current model
33321
+ * @param EngagementConversationQuestionMessage The instance to deserialize into.
33322
+ * @returns {Record<string, (node: ParseNode) => void>}
33323
+ */
33324
+ export declare function deserializeIntoEngagementConversationQuestionMessage(engagementConversationQuestionMessage?: Partial<EngagementConversationQuestionMessage> | undefined): Record<string, (node: ParseNode) => void>;
33325
+ /**
33326
+ * The deserialization information for the current model
33327
+ * @param EngagementConversationSystemMessage The instance to deserialize into.
33328
+ * @returns {Record<string, (node: ParseNode) => void>}
33329
+ */
33330
+ export declare function deserializeIntoEngagementConversationSystemMessage(engagementConversationSystemMessage?: Partial<EngagementConversationSystemMessage> | undefined): Record<string, (node: ParseNode) => void>;
33331
+ /**
33332
+ * The deserialization information for the current model
33333
+ * @param EngagementIdentitySet The instance to deserialize into.
33334
+ * @returns {Record<string, (node: ParseNode) => void>}
33335
+ */
33336
+ export declare function deserializeIntoEngagementIdentitySet(engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
32682
33337
  /**
32683
33338
  * The deserialization information for the current model
32684
33339
  * @param EnrollmentConfigurationAssignment The instance to deserialize into.
@@ -33645,12 +34300,6 @@ export declare function deserializeIntoIosCompliancePolicy(iosCompliancePolicy?:
33645
34300
  * @returns {Record<string, (node: ParseNode) => void>}
33646
34301
  */
33647
34302
  export declare function deserializeIntoIosCustomConfiguration(iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
33648
- /**
33649
- * The deserialization information for the current model
33650
- * @param IosDdmLobAppAssignmentSettings The instance to deserialize into.
33651
- * @returns {Record<string, (node: ParseNode) => void>}
33652
- */
33653
- export declare function deserializeIntoIosDdmLobAppAssignmentSettings(iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined): Record<string, (node: ParseNode) => void>;
33654
34303
  /**
33655
34304
  * The deserialization information for the current model
33656
34305
  * @param IosDeviceFeaturesConfiguration The instance to deserialize into.
@@ -35673,6 +36322,18 @@ export declare function deserializeIntoOnlineMeetingBase(onlineMeetingBase?: Par
35673
36322
  * @returns {Record<string, (node: ParseNode) => void>}
35674
36323
  */
35675
36324
  export declare function deserializeIntoOnlineMeetingCollectionResponse(onlineMeetingCollectionResponse?: Partial<OnlineMeetingCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
36325
+ /**
36326
+ * The deserialization information for the current model
36327
+ * @param OnlineMeetingEngagementConversation The instance to deserialize into.
36328
+ * @returns {Record<string, (node: ParseNode) => void>}
36329
+ */
36330
+ export declare function deserializeIntoOnlineMeetingEngagementConversation(onlineMeetingEngagementConversation?: Partial<OnlineMeetingEngagementConversation> | undefined): Record<string, (node: ParseNode) => void>;
36331
+ /**
36332
+ * The deserialization information for the current model
36333
+ * @param OnlineMeetingEngagementConversationCollectionResponse The instance to deserialize into.
36334
+ * @returns {Record<string, (node: ParseNode) => void>}
36335
+ */
36336
+ export declare function deserializeIntoOnlineMeetingEngagementConversationCollectionResponse(onlineMeetingEngagementConversationCollectionResponse?: Partial<OnlineMeetingEngagementConversationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
35676
36337
  /**
35677
36338
  * The deserialization information for the current model
35678
36339
  * @param OnlineMeetingInfo The instance to deserialize into.
@@ -35751,6 +36412,12 @@ export declare function deserializeIntoOnPremisesExtensionAttributes(onPremisesE
35751
36412
  * @returns {Record<string, (node: ParseNode) => void>}
35752
36413
  */
35753
36414
  export declare function deserializeIntoOnPremisesProvisioningError(onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): Record<string, (node: ParseNode) => void>;
36415
+ /**
36416
+ * The deserialization information for the current model
36417
+ * @param OnPremisesSyncBehavior The instance to deserialize into.
36418
+ * @returns {Record<string, (node: ParseNode) => void>}
36419
+ */
36420
+ export declare function deserializeIntoOnPremisesSyncBehavior(onPremisesSyncBehavior?: Partial<OnPremisesSyncBehavior> | undefined): Record<string, (node: ParseNode) => void>;
35754
36421
  /**
35755
36422
  * The deserialization information for the current model
35756
36423
  * @param OnTokenIssuanceStartCustomExtension The instance to deserialize into.
@@ -37179,6 +37846,18 @@ export declare function deserializeIntoReadingAssignmentSubmission(readingAssign
37179
37846
  * @returns {Record<string, (node: ParseNode) => void>}
37180
37847
  */
37181
37848
  export declare function deserializeIntoReadingAssignmentSubmissionCollectionResponse(readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
37849
+ /**
37850
+ * The deserialization information for the current model
37851
+ * @param ReadingCoachPassage The instance to deserialize into.
37852
+ * @returns {Record<string, (node: ParseNode) => void>}
37853
+ */
37854
+ export declare function deserializeIntoReadingCoachPassage(readingCoachPassage?: Partial<ReadingCoachPassage> | undefined): Record<string, (node: ParseNode) => void>;
37855
+ /**
37856
+ * The deserialization information for the current model
37857
+ * @param ReadingCoachPassageCollectionResponse The instance to deserialize into.
37858
+ * @returns {Record<string, (node: ParseNode) => void>}
37859
+ */
37860
+ export declare function deserializeIntoReadingCoachPassageCollectionResponse(readingCoachPassageCollectionResponse?: Partial<ReadingCoachPassageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
37182
37861
  /**
37183
37862
  * The deserialization information for the current model
37184
37863
  * @param RecentNotebook The instance to deserialize into.
@@ -37611,6 +38290,12 @@ export declare function deserializeIntoRiskDetection(riskDetection?: Partial<Ris
37611
38290
  * @returns {Record<string, (node: ParseNode) => void>}
37612
38291
  */
37613
38292
  export declare function deserializeIntoRiskDetectionCollectionResponse(riskDetectionCollectionResponse?: Partial<RiskDetectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
38293
+ /**
38294
+ * The deserialization information for the current model
38295
+ * @param RiskPreventionContainer The instance to deserialize into.
38296
+ * @returns {Record<string, (node: ParseNode) => void>}
38297
+ */
38298
+ export declare function deserializeIntoRiskPreventionContainer(riskPreventionContainer?: Partial<RiskPreventionContainer> | undefined): Record<string, (node: ParseNode) => void>;
37614
38299
  /**
37615
38300
  * The deserialization information for the current model
37616
38301
  * @param RiskServicePrincipalActivity The instance to deserialize into.
@@ -38751,6 +39436,18 @@ export declare function deserializeIntoSortProperty(sortProperty?: Partial<SortP
38751
39436
  * @returns {Record<string, (node: ParseNode) => void>}
38752
39437
  */
38753
39438
  export declare function deserializeIntoSpaApplication(spaApplication?: Partial<SpaApplication> | undefined): Record<string, (node: ParseNode) => void>;
39439
+ /**
39440
+ * The deserialization information for the current model
39441
+ * @param SpeakerAssignmentSubmission The instance to deserialize into.
39442
+ * @returns {Record<string, (node: ParseNode) => void>}
39443
+ */
39444
+ export declare function deserializeIntoSpeakerAssignmentSubmission(speakerAssignmentSubmission?: Partial<SpeakerAssignmentSubmission> | undefined): Record<string, (node: ParseNode) => void>;
39445
+ /**
39446
+ * The deserialization information for the current model
39447
+ * @param SpeakerAssignmentSubmissionCollectionResponse The instance to deserialize into.
39448
+ * @returns {Record<string, (node: ParseNode) => void>}
39449
+ */
39450
+ export declare function deserializeIntoSpeakerAssignmentSubmissionCollectionResponse(speakerAssignmentSubmissionCollectionResponse?: Partial<SpeakerAssignmentSubmissionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
38754
39451
  /**
38755
39452
  * The deserialization information for the current model
38756
39453
  * @param SpecialFolder The instance to deserialize into.
@@ -39465,18 +40162,6 @@ export declare function deserializeIntoTeamworkTagMemberCollectionResponse(teamw
39465
40162
  * @returns {Record<string, (node: ParseNode) => void>}
39466
40163
  */
39467
40164
  export declare function deserializeIntoTeamworkUserIdentity(teamworkUserIdentity?: Partial<TeamworkUserIdentity> | undefined): Record<string, (node: ParseNode) => void>;
39468
- /**
39469
- * The deserialization information for the current model
39470
- * @param TelecomExpenseManagementPartner The instance to deserialize into.
39471
- * @returns {Record<string, (node: ParseNode) => void>}
39472
- */
39473
- export declare function deserializeIntoTelecomExpenseManagementPartner(telecomExpenseManagementPartner?: Partial<TelecomExpenseManagementPartner> | undefined): Record<string, (node: ParseNode) => void>;
39474
- /**
39475
- * The deserialization information for the current model
39476
- * @param TelecomExpenseManagementPartnerCollectionResponse The instance to deserialize into.
39477
- * @returns {Record<string, (node: ParseNode) => void>}
39478
- */
39479
- export declare function deserializeIntoTelecomExpenseManagementPartnerCollectionResponse(telecomExpenseManagementPartnerCollectionResponse?: Partial<TelecomExpenseManagementPartnerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
39480
40165
  /**
39481
40166
  * The deserialization information for the current model
39482
40167
  * @param TeleconferenceDeviceAudioQuality The instance to deserialize into.
@@ -41037,6 +41722,48 @@ export declare function deserializeIntoWebApp(webApp?: Partial<WebApp> | undefin
41037
41722
  * @returns {Record<string, (node: ParseNode) => void>}
41038
41723
  */
41039
41724
  export declare function deserializeIntoWebApplication(webApplication?: Partial<WebApplication> | undefined): Record<string, (node: ParseNode) => void>;
41725
+ /**
41726
+ * The deserialization information for the current model
41727
+ * @param WebApplicationFirewallDnsConfiguration The instance to deserialize into.
41728
+ * @returns {Record<string, (node: ParseNode) => void>}
41729
+ */
41730
+ export declare function deserializeIntoWebApplicationFirewallDnsConfiguration(webApplicationFirewallDnsConfiguration?: Partial<WebApplicationFirewallDnsConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
41731
+ /**
41732
+ * The deserialization information for the current model
41733
+ * @param WebApplicationFirewallProvider The instance to deserialize into.
41734
+ * @returns {Record<string, (node: ParseNode) => void>}
41735
+ */
41736
+ export declare function deserializeIntoWebApplicationFirewallProvider(webApplicationFirewallProvider?: Partial<WebApplicationFirewallProvider> | undefined): Record<string, (node: ParseNode) => void>;
41737
+ /**
41738
+ * The deserialization information for the current model
41739
+ * @param WebApplicationFirewallProviderCollectionResponse The instance to deserialize into.
41740
+ * @returns {Record<string, (node: ParseNode) => void>}
41741
+ */
41742
+ export declare function deserializeIntoWebApplicationFirewallProviderCollectionResponse(webApplicationFirewallProviderCollectionResponse?: Partial<WebApplicationFirewallProviderCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
41743
+ /**
41744
+ * The deserialization information for the current model
41745
+ * @param WebApplicationFirewallVerificationModel The instance to deserialize into.
41746
+ * @returns {Record<string, (node: ParseNode) => void>}
41747
+ */
41748
+ export declare function deserializeIntoWebApplicationFirewallVerificationModel(webApplicationFirewallVerificationModel?: Partial<WebApplicationFirewallVerificationModel> | undefined): Record<string, (node: ParseNode) => void>;
41749
+ /**
41750
+ * The deserialization information for the current model
41751
+ * @param WebApplicationFirewallVerificationModelCollectionResponse The instance to deserialize into.
41752
+ * @returns {Record<string, (node: ParseNode) => void>}
41753
+ */
41754
+ export declare function deserializeIntoWebApplicationFirewallVerificationModelCollectionResponse(webApplicationFirewallVerificationModelCollectionResponse?: Partial<WebApplicationFirewallVerificationModelCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
41755
+ /**
41756
+ * The deserialization information for the current model
41757
+ * @param WebApplicationFirewallVerificationResult The instance to deserialize into.
41758
+ * @returns {Record<string, (node: ParseNode) => void>}
41759
+ */
41760
+ export declare function deserializeIntoWebApplicationFirewallVerificationResult(webApplicationFirewallVerificationResult?: Partial<WebApplicationFirewallVerificationResult> | undefined): Record<string, (node: ParseNode) => void>;
41761
+ /**
41762
+ * The deserialization information for the current model
41763
+ * @param WebApplicationFirewallVerifiedDetails The instance to deserialize into.
41764
+ * @returns {Record<string, (node: ParseNode) => void>}
41765
+ */
41766
+ export declare function deserializeIntoWebApplicationFirewallVerifiedDetails(webApplicationFirewallVerifiedDetails?: Partial<WebApplicationFirewallVerifiedDetails> | undefined): Record<string, (node: ParseNode) => void>;
41040
41767
  /**
41041
41768
  * The deserialization information for the current model
41042
41769
  * @param WebPart The instance to deserialize into.
@@ -42295,7 +43022,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
42295
43022
  */
42296
43023
  backingStoreEnabled?: boolean | null;
42297
43024
  /**
42298
- * Not yet documented
43025
+ * The content property
42299
43026
  */
42300
43027
  content?: ArrayBuffer | null;
42301
43028
  /**
@@ -42308,7 +43035,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
42308
43035
  */
42309
43036
  export interface DeviceAndAppManagementRoleAssignment extends Parsable, RoleAssignment {
42310
43037
  /**
42311
- * The list of ids of role member security groups. These are IDs from Azure Active Directory.
43038
+ * Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}.
42312
43039
  */
42313
43040
  members?: string[] | null;
42314
43041
  }
@@ -42709,7 +43436,7 @@ export interface DeviceCompliancePolicySettingStateSummary extends Entity, Parsa
42709
43436
  */
42710
43437
  conflictDeviceCount?: number | null;
42711
43438
  /**
42712
- * Not yet documented
43439
+ * The deviceComplianceSettingStates property
42713
43440
  */
42714
43441
  deviceComplianceSettingStates?: DeviceComplianceSettingState[] | null;
42715
43442
  /**
@@ -43362,23 +44089,23 @@ export interface DeviceEnrollmentPlatformRestriction extends AdditionalDataHolde
43362
44089
  */
43363
44090
  export interface DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnrollmentConfiguration, Parsable {
43364
44091
  /**
43365
- * Android restrictions based on platform, platform operating system version, and device ownership
44092
+ * Indicates restrictions for Android platform.
43366
44093
  */
43367
44094
  androidRestriction?: DeviceEnrollmentPlatformRestriction | null;
43368
44095
  /**
43369
- * Ios restrictions based on platform, platform operating system version, and device ownership
44096
+ * Indicates restrictions for IOS platform.
43370
44097
  */
43371
44098
  iosRestriction?: DeviceEnrollmentPlatformRestriction | null;
43372
44099
  /**
43373
- * Mac restrictions based on platform, platform operating system version, and device ownership
44100
+ * Indicates restrictions for MacOS platform.
43374
44101
  */
43375
44102
  macOSRestriction?: DeviceEnrollmentPlatformRestriction | null;
43376
44103
  /**
43377
- * Windows mobile restrictions based on platform, platform operating system version, and device ownership
44104
+ * Indicates restrictions for Windows Mobile platform.
43378
44105
  */
43379
44106
  windowsMobileRestriction?: DeviceEnrollmentPlatformRestriction | null;
43380
44107
  /**
43381
- * Windows restrictions based on platform, platform operating system version, and device ownership
44108
+ * Indicates restrictions for Windows platform.
43382
44109
  */
43383
44110
  windowsRestriction?: DeviceEnrollmentPlatformRestriction | null;
43384
44111
  }
@@ -43644,7 +44371,7 @@ export interface DeviceHealthAttestationState extends AdditionalDataHolder, Back
43644
44371
  */
43645
44372
  tpmVersion?: string | null;
43646
44373
  /**
43647
- * VSM is a container that protects high value assets from a compromised kernel
44374
+ * Indicates whether the device has Virtual Secure Mode (VSM) enabled. Virtual Secure Mode (VSM) is a container that protects high value assets from a compromised kernel. This property will be deprecated in beta from August 2023. Support for this property will end in August 2025 for v1.0 API. A new property virtualizationBasedSecurity is added and used instead. The value used for virtualSecureMode will be passed by virtualizationBasedSecurity during the deprecation process. Possible values are 'enabled', 'disabled' and 'notApplicable'. 'enabled' indicates Virtual Secure Mode (VSM) is enabled. 'disabled' indicates Virtual Secure Mode (VSM) is disabled. 'notApplicable' indicates the device is not a Windows 11 device. Default value is 'notApplicable'.
43648
44375
  */
43649
44376
  virtualSecureMode?: string | null;
43650
44377
  /**
@@ -44008,7 +44735,7 @@ export interface DeviceManagement extends Entity, Parsable {
44008
44735
  */
44009
44736
  remoteAssistancePartners?: RemoteAssistancePartner[] | null;
44010
44737
  /**
44011
- * Reports singleton
44738
+ * The reports property
44012
44739
  */
44013
44740
  reports?: DeviceManagementReports | null;
44014
44741
  /**
@@ -44035,10 +44762,6 @@ export interface DeviceManagement extends Entity, Parsable {
44035
44762
  * Tenant mobile device management subscription state.
44036
44763
  */
44037
44764
  subscriptionState?: DeviceManagementSubscriptionState | null;
44038
- /**
44039
- * The telecom expense management partners.
44040
- */
44041
- telecomExpenseManagementPartners?: TelecomExpenseManagementPartner[] | null;
44042
44765
  /**
44043
44766
  * The terms and conditions associated with device management of the company.
44044
44767
  */
@@ -44144,7 +44867,7 @@ export interface DeviceManagement extends Entity, Parsable {
44144
44867
  */
44145
44868
  userExperienceAnalyticsWorkFromAnywhereModelPerformance?: UserExperienceAnalyticsWorkFromAnywhereModelPerformance[] | null;
44146
44869
  /**
44147
- * Virtual endpoint
44870
+ * The virtualEndpoint property
44148
44871
  */
44149
44872
  virtualEndpoint?: VirtualEndpoint | null;
44150
44873
  /**
@@ -44230,11 +44953,11 @@ export type DeviceManagementExchangeConnectorType = (typeof DeviceManagementExch
44230
44953
  */
44231
44954
  export interface DeviceManagementExportJob extends Entity, Parsable {
44232
44955
  /**
44233
- * Time that the exported report expires
44956
+ * Time that the exported report expires.
44234
44957
  */
44235
44958
  expirationDateTime?: Date | null;
44236
44959
  /**
44237
- * Filters applied on the report
44960
+ * Filters applied on the report. The maximum length allowed for this property is 2000 characters.
44238
44961
  */
44239
44962
  filter?: string | null;
44240
44963
  /**
@@ -44246,19 +44969,19 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
44246
44969
  */
44247
44970
  localizationType?: DeviceManagementExportJobLocalizationType | null;
44248
44971
  /**
44249
- * Name of the report
44972
+ * Name of the report. The maximum length allowed for this property is 2000 characters.
44250
44973
  */
44251
44974
  reportName?: string | null;
44252
44975
  /**
44253
- * Time that the exported report was requested
44976
+ * Time that the exported report was requested.
44254
44977
  */
44255
44978
  requestDateTime?: Date | null;
44256
44979
  /**
44257
- * Columns selected from the report
44980
+ * Columns selected from the report. The maximum number of allowed columns names is 256. The maximum length allowed for each column name in this property is 1000 characters.
44258
44981
  */
44259
44982
  select?: string[] | null;
44260
44983
  /**
44261
- * A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id.
44984
+ * A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id. The maximum length allowed for this property is 128 characters.
44262
44985
  */
44263
44986
  snapshotId?: string | null;
44264
44987
  /**
@@ -44266,7 +44989,7 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
44266
44989
  */
44267
44990
  status?: DeviceManagementReportStatus | null;
44268
44991
  /**
44269
- * Temporary location of the exported report
44992
+ * Temporary location of the exported report.
44270
44993
  */
44271
44994
  url?: string | null;
44272
44995
  }
@@ -44346,7 +45069,7 @@ export type DeviceManagementPartnerTenantState = (typeof DeviceManagementPartner
44346
45069
  export type DeviceManagementReportFileFormat = (typeof DeviceManagementReportFileFormatObject)[keyof typeof DeviceManagementReportFileFormatObject];
44347
45070
  export interface DeviceManagementReports extends Entity, Parsable {
44348
45071
  /**
44349
- * Entity representing a job to export a report
45072
+ * Entity representing a job to export a report.
44350
45073
  */
44351
45074
  exportJobs?: DeviceManagementExportJob[] | null;
44352
45075
  }
@@ -44951,7 +45674,7 @@ export interface DocumentSetVersionItem extends AdditionalDataHolder, BackedMode
44951
45674
  }
44952
45675
  export interface Domain extends Entity, Parsable {
44953
45676
  /**
44954
- * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the Directory.AccessAsUser.All delegated permission.
45677
+ * Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the Domain-InternalFederation.ReadWrite.All permission.
44955
45678
  */
44956
45679
  authenticationType?: string | null;
44957
45680
  /**
@@ -45602,6 +46325,112 @@ export interface EditionUpgradeConfiguration extends DeviceConfiguration, Parsab
45602
46325
  export type EditionUpgradeLicenseType = (typeof EditionUpgradeLicenseTypeObject)[keyof typeof EditionUpgradeLicenseTypeObject];
45603
46326
  export type EducationAddedStudentAction = (typeof EducationAddedStudentActionObject)[keyof typeof EducationAddedStudentActionObject];
45604
46327
  export type EducationAddToCalendarOptions = (typeof EducationAddToCalendarOptionsObject)[keyof typeof EducationAddToCalendarOptionsObject];
46328
+ export interface EducationAiFeedbackAudienceEngagementSettings extends AdditionalDataHolder, BackedModel, Parsable {
46329
+ /**
46330
+ * Indicates whether the student should receive feedback on their engagement strategies from the AI feedback.
46331
+ */
46332
+ areEngagementStrategiesEnabled?: boolean | null;
46333
+ /**
46334
+ * Stores model information.
46335
+ */
46336
+ backingStoreEnabled?: boolean | null;
46337
+ /**
46338
+ * Indicates whether the student should receive feedback on their call to action from the AI feedback.
46339
+ */
46340
+ isCallToActionEnabled?: boolean | null;
46341
+ /**
46342
+ * Indicates whether the student should receive feedback on their emotional and intellectual appeal from the AI feedback.
46343
+ */
46344
+ isEmotionalAndIntellectualAppealEnabled?: boolean | null;
46345
+ /**
46346
+ * The OdataType property
46347
+ */
46348
+ odataType?: string | null;
46349
+ }
46350
+ export interface EducationAiFeedbackContentSettings extends AdditionalDataHolder, BackedModel, Parsable {
46351
+ /**
46352
+ * Stores model information.
46353
+ */
46354
+ backingStoreEnabled?: boolean | null;
46355
+ /**
46356
+ * Indicates whether the student should receive feedback on their message clarity from the AI feedback.
46357
+ */
46358
+ isMessageClarityEnabled?: boolean | null;
46359
+ /**
46360
+ * Indicates whether the student should receive feedback on their quality of information from the AI feedback.
46361
+ */
46362
+ isQualityOfInformationEnabled?: boolean | null;
46363
+ /**
46364
+ * Indicates whether the student should receive feedback on their speech organization from the AI feedback.
46365
+ */
46366
+ isSpeechOrganizationEnabled?: boolean | null;
46367
+ /**
46368
+ * The OdataType property
46369
+ */
46370
+ odataType?: string | null;
46371
+ }
46372
+ export interface EducationAiFeedbackCriteria extends AdditionalDataHolder, BackedModel, Parsable {
46373
+ /**
46374
+ * The aiFeedbackSettings property
46375
+ */
46376
+ aiFeedbackSettings?: EducationAiFeedbackSettings | null;
46377
+ /**
46378
+ * Stores model information.
46379
+ */
46380
+ backingStoreEnabled?: boolean | null;
46381
+ /**
46382
+ * The OdataType property
46383
+ */
46384
+ odataType?: string | null;
46385
+ /**
46386
+ * The speechType property
46387
+ */
46388
+ speechType?: EducationSpeechType | null;
46389
+ }
46390
+ export interface EducationAiFeedbackDeliverySettings extends AdditionalDataHolder, BackedModel, Parsable {
46391
+ /**
46392
+ * Indicates whether the student should receive feedback on their rhetorical techniques from the AI feedback.
46393
+ */
46394
+ areRhetoricalTechniquesEnabled?: boolean | null;
46395
+ /**
46396
+ * Stores model information.
46397
+ */
46398
+ backingStoreEnabled?: boolean | null;
46399
+ /**
46400
+ * Indicates whether the student should receive feedback on their language use from the AI feedback.
46401
+ */
46402
+ isLanguageUseEnabled?: boolean | null;
46403
+ /**
46404
+ * Indicates whether the student should receive feedback on their style from the AI feedback.
46405
+ */
46406
+ isStyleEnabled?: boolean | null;
46407
+ /**
46408
+ * The OdataType property
46409
+ */
46410
+ odataType?: string | null;
46411
+ }
46412
+ export interface EducationAiFeedbackSettings extends AdditionalDataHolder, BackedModel, Parsable {
46413
+ /**
46414
+ * The audience engagement related feedback types that students should receive from the AI feedback.
46415
+ */
46416
+ audienceEngagementSettings?: EducationAiFeedbackAudienceEngagementSettings | null;
46417
+ /**
46418
+ * Stores model information.
46419
+ */
46420
+ backingStoreEnabled?: boolean | null;
46421
+ /**
46422
+ * The content related feedback types that students should receive from the AI feedback.
46423
+ */
46424
+ contentSettings?: EducationAiFeedbackContentSettings | null;
46425
+ /**
46426
+ * The delivery related feedback types that students should receive from the AI feedback.
46427
+ */
46428
+ deliverySettings?: EducationAiFeedbackDeliverySettings | null;
46429
+ /**
46430
+ * The OdataType property
46431
+ */
46432
+ odataType?: string | null;
46433
+ }
45605
46434
  export interface EducationAssignment extends Entity, Parsable {
45606
46435
  /**
45607
46436
  * Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none. Supported values are: none, assignIfOpen. For example, a teacher can use assignIfOpen to indicate that an assignment should be assigned to any new student who joins the class while the assignment is still open, and none to indicate that an assignment shouldn't be assigned to new students.
@@ -45671,10 +46500,18 @@ export interface EducationAssignment extends Entity, Parsable {
45671
46500
  * When set, enables users to weight assignments differently when computing a class average grade.
45672
46501
  */
45673
46502
  gradingCategory?: EducationGradingCategory | null;
46503
+ /**
46504
+ * When set, enables users to configure custom string grades based on the percentage of total points earned on this assignment.
46505
+ */
46506
+ gradingScheme?: EducationGradingScheme | null;
45674
46507
  /**
45675
46508
  * Instructions for the assignment. The instructions and the display name tell the student what to do.
45676
46509
  */
45677
46510
  instructions?: EducationItemBody | null;
46511
+ /**
46512
+ * Specifies the language in which UI notifications for the assignment are displayed. If languageTag isn't provided, the default language is en-US. Optional.
46513
+ */
46514
+ languageTag?: string | null;
45678
46515
  /**
45679
46516
  * Who last modified the assignment.
45680
46517
  */
@@ -45801,6 +46638,10 @@ export interface EducationAssignmentRecipient extends AdditionalDataHolder, Back
45801
46638
  odataType?: string | null;
45802
46639
  }
45803
46640
  export interface EducationAssignmentResource extends Entity, Parsable {
46641
+ /**
46642
+ * A collection of assignment resources that depend on the parent educationAssignmentResource.
46643
+ */
46644
+ dependentResources?: EducationAssignmentResource[] | null;
45804
46645
  /**
45805
46646
  * Indicates whether this resource should be copied to each student submission for modification and submission. Required
45806
46647
  */
@@ -45817,10 +46658,18 @@ export interface EducationAssignmentResourceCollectionResponse extends BaseColle
45817
46658
  value?: EducationAssignmentResource[] | null;
45818
46659
  }
45819
46660
  export interface EducationAssignmentSettings extends Entity, Parsable {
46661
+ /**
46662
+ * The default grading scheme for assignments created in this class.
46663
+ */
46664
+ defaultGradingScheme?: EducationGradingScheme | null;
45820
46665
  /**
45821
46666
  * When set, enables users to weight assignments differently when computing a class average grade.
45822
46667
  */
45823
46668
  gradingCategories?: EducationGradingCategory[] | null;
46669
+ /**
46670
+ * The grading schemes that can be attached to assignments created in this class.
46671
+ */
46672
+ gradingSchemes?: EducationGradingScheme[] | null;
45824
46673
  /**
45825
46674
  * Indicates whether to show the turn-in celebration animation. If true, indicates to skip the animation. The default value is false.
45826
46675
  */
@@ -46046,6 +46895,48 @@ export interface EducationGradingCategoryCollectionResponse extends BaseCollecti
46046
46895
  */
46047
46896
  value?: EducationGradingCategory[] | null;
46048
46897
  }
46898
+ export interface EducationGradingScheme extends Entity, Parsable {
46899
+ /**
46900
+ * The name of the grading scheme.
46901
+ */
46902
+ displayName?: string | null;
46903
+ /**
46904
+ * The grades that make up the scheme.
46905
+ */
46906
+ grades?: EducationGradingSchemeGrade[] | null;
46907
+ /**
46908
+ * The display setting for the UI. Indicates whether teachers can grade with points in addition to letter grades.
46909
+ */
46910
+ hidePointsDuringGrading?: boolean | null;
46911
+ }
46912
+ export interface EducationGradingSchemeCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
46913
+ /**
46914
+ * The value property
46915
+ */
46916
+ value?: EducationGradingScheme[] | null;
46917
+ }
46918
+ export interface EducationGradingSchemeGrade extends AdditionalDataHolder, BackedModel, Parsable {
46919
+ /**
46920
+ * Stores model information.
46921
+ */
46922
+ backingStoreEnabled?: boolean | null;
46923
+ /**
46924
+ * The midpoint of the grade range.
46925
+ */
46926
+ defaultPercentage?: number | null;
46927
+ /**
46928
+ * The name of this individual grade.
46929
+ */
46930
+ displayName?: string | null;
46931
+ /**
46932
+ * The minimum percentage of the total points needed to achieve this grade.
46933
+ */
46934
+ minPercentage?: number | null;
46935
+ /**
46936
+ * The OdataType property
46937
+ */
46938
+ odataType?: string | null;
46939
+ }
46049
46940
  export interface EducationItemBody extends AdditionalDataHolder, BackedModel, Parsable {
46050
46941
  /**
46051
46942
  * Stores model information.
@@ -46393,6 +47284,125 @@ export interface EducationSchoolCollectionResponse extends BaseCollectionPaginat
46393
47284
  */
46394
47285
  value?: EducationSchool[] | null;
46395
47286
  }
47287
+ export interface EducationSpeakerCoachAudienceEngagementSettings extends AdditionalDataHolder, BackedModel, Parsable {
47288
+ /**
47289
+ * Stores model information.
47290
+ */
47291
+ backingStoreEnabled?: boolean | null;
47292
+ /**
47293
+ * Indicates whether the student should receive feedback on their body language from the Speaker Coach.
47294
+ */
47295
+ isBodyLanguageEnabled?: boolean | null;
47296
+ /**
47297
+ * The OdataType property
47298
+ */
47299
+ odataType?: string | null;
47300
+ }
47301
+ export interface EducationSpeakerCoachContentSettings extends AdditionalDataHolder, BackedModel, Parsable {
47302
+ /**
47303
+ * Stores model information.
47304
+ */
47305
+ backingStoreEnabled?: boolean | null;
47306
+ /**
47307
+ * Indicates whether the student should receive feedback on their inclusiveness from the Speaker Coach.
47308
+ */
47309
+ isInclusivenessEnabled?: boolean | null;
47310
+ /**
47311
+ * Indicates whether the student should receive feedback on their repetitive language from the Speaker Coach.
47312
+ */
47313
+ isRepetitiveLanguageEnabled?: boolean | null;
47314
+ /**
47315
+ * The OdataType property
47316
+ */
47317
+ odataType?: string | null;
47318
+ }
47319
+ export interface EducationSpeakerCoachDeliverySettings extends AdditionalDataHolder, BackedModel, Parsable {
47320
+ /**
47321
+ * Indicates whether the student should receive feedback on their filler words from the Speaker Coach.
47322
+ */
47323
+ areFillerWordsEnabled?: boolean | null;
47324
+ /**
47325
+ * Stores model information.
47326
+ */
47327
+ backingStoreEnabled?: boolean | null;
47328
+ /**
47329
+ * Indicates whether the student should receive feedback on their pace from the Speaker Coach.
47330
+ */
47331
+ isPaceEnabled?: boolean | null;
47332
+ /**
47333
+ * Indicates whether the student should receive feedback on their pitch from the Speaker Coach.
47334
+ */
47335
+ isPitchEnabled?: boolean | null;
47336
+ /**
47337
+ * Indicates whether the student should receive feedback on their pronunciation from the Speaker Coach. This is automatically enabled if isAiFeedbackEnabled is set to true on the educationSpeakerProgressResource, or if spokenLanguageLocale is set to a value besides en-US on the educationSpeakerProgressResource.
47338
+ */
47339
+ isPronunciationEnabled?: boolean | null;
47340
+ /**
47341
+ * The OdataType property
47342
+ */
47343
+ odataType?: string | null;
47344
+ }
47345
+ export interface EducationSpeakerCoachSettings extends AdditionalDataHolder, BackedModel, Parsable {
47346
+ /**
47347
+ * The audience engagement related feedback types that students should receive from the Speaker Coach.
47348
+ */
47349
+ audienceEngagementSettings?: EducationSpeakerCoachAudienceEngagementSettings | null;
47350
+ /**
47351
+ * Stores model information.
47352
+ */
47353
+ backingStoreEnabled?: boolean | null;
47354
+ /**
47355
+ * The content related feedback types that students should receive from the Speaker Coach.
47356
+ */
47357
+ contentSettings?: EducationSpeakerCoachContentSettings | null;
47358
+ /**
47359
+ * The delivery related feedback types that students should receive from the Speaker Coach.
47360
+ */
47361
+ deliverySettings?: EducationSpeakerCoachDeliverySettings | null;
47362
+ /**
47363
+ * The OdataType property
47364
+ */
47365
+ odataType?: string | null;
47366
+ }
47367
+ export interface EducationSpeakerProgressResource extends EducationResource, Parsable {
47368
+ /**
47369
+ * The feedback types that students should receive from AI feedback. This property should only be provided if isAiFeedbackEnabled is true.
47370
+ */
47371
+ aiFeedbackCriteria?: EducationAiFeedbackCriteria | null;
47372
+ /**
47373
+ * Indicates whether AI feedback is enabled for the student submissions.
47374
+ */
47375
+ isAiFeedbackEnabled?: boolean | null;
47376
+ /**
47377
+ * Indicates whether video is required for the student recording.
47378
+ */
47379
+ isVideoRequired?: boolean | null;
47380
+ /**
47381
+ * The maximum number of recording attempts available to the student. Specify 0 to set unlimited recording attempts.
47382
+ */
47383
+ maxRecordingAttempts?: number | null;
47384
+ /**
47385
+ * The title of the speaker progress resource visible to students.
47386
+ */
47387
+ presentationTitle?: string | null;
47388
+ /**
47389
+ * The time limit is in minutes for the student recording.
47390
+ */
47391
+ recordingTimeLimitInMinutes?: number | null;
47392
+ /**
47393
+ * Allows students to view their rehearsal report before the assignment is graded.
47394
+ */
47395
+ showRehearsalReportToStudentBeforeMediaUpload?: boolean | null;
47396
+ /**
47397
+ * The feedback types that students should receive from the Speaker Coach.
47398
+ */
47399
+ speakerCoachSettings?: EducationSpeakerCoachSettings | null;
47400
+ /**
47401
+ * The spoken language for the student recording. For example, en-US.
47402
+ */
47403
+ spokenLanguageLocale?: string | null;
47404
+ }
47405
+ export type EducationSpeechType = (typeof EducationSpeechTypeObject)[keyof typeof EducationSpeechTypeObject];
46396
47406
  export interface EducationStudent extends AdditionalDataHolder, BackedModel, Parsable {
46397
47407
  /**
46398
47408
  * Stores model information.
@@ -46533,9 +47543,13 @@ export interface EducationSubmissionRecipient extends AdditionalDataHolder, Back
46533
47543
  }
46534
47544
  export interface EducationSubmissionResource extends Entity, Parsable {
46535
47545
  /**
46536
- * Pointer to the assignment from which the resource was copied, and if null, the student uploaded the resource.
47546
+ * Pointer to the assignment from which the resource was copied. If the value is null, the student uploaded the resource.
46537
47547
  */
46538
47548
  assignmentResourceUrl?: string | null;
47549
+ /**
47550
+ * A collection of submission resources that depend on the parent educationSubmissionResource.
47551
+ */
47552
+ dependentResources?: EducationSubmissionResource[] | null;
46539
47553
  /**
46540
47554
  * Resource object.
46541
47555
  */
@@ -46881,11 +47895,11 @@ export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel,
46881
47895
  */
46882
47896
  backingStoreEnabled?: boolean | null;
46883
47897
  /**
46884
- * The displayName property
47898
+ * The display name of the emergency caller.
46885
47899
  */
46886
47900
  displayName?: string | null;
46887
47901
  /**
46888
- * The location property
47902
+ * The location of the emergency caller.
46889
47903
  */
46890
47904
  location?: Location | null;
46891
47905
  /**
@@ -46893,29 +47907,29 @@ export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel,
46893
47907
  */
46894
47908
  odataType?: string | null;
46895
47909
  /**
46896
- * The phoneNumber property
47910
+ * The phone number of the emergency caller.
46897
47911
  */
46898
47912
  phoneNumber?: string | null;
46899
47913
  /**
46900
- * The tenantId property
47914
+ * The tenant ID of the emergency caller.
46901
47915
  */
46902
47916
  tenantId?: string | null;
46903
47917
  /**
46904
- * The upn property
47918
+ * The user principal name of the emergency caller.
46905
47919
  */
46906
47920
  upn?: string | null;
46907
47921
  }
46908
47922
  export interface EmergencyCallEvent extends CallEvent, Parsable {
46909
47923
  /**
46910
- * The callerInfo property
47924
+ * The information of the emergency caller.
46911
47925
  */
46912
47926
  callerInfo?: EmergencyCallerInfo | null;
46913
47927
  /**
46914
- * The emergencyNumberDialed property
47928
+ * The emergency number dialed.
46915
47929
  */
46916
47930
  emergencyNumberDialed?: string | null;
46917
47931
  /**
46918
- * The policyName property
47932
+ * The policy name for the emergency call event.
46919
47933
  */
46920
47934
  policyName?: string | null;
46921
47935
  }
@@ -47131,6 +48145,136 @@ export interface EngagementAsyncOperationCollectionResponse extends BaseCollecti
47131
48145
  value?: EngagementAsyncOperation[] | null;
47132
48146
  }
47133
48147
  export type EngagementAsyncOperationType = (typeof EngagementAsyncOperationTypeObject)[keyof typeof EngagementAsyncOperationTypeObject];
48148
+ /**
48149
+ * Represents a conversation in Viva Engage.
48150
+ */
48151
+ export interface EngagementConversation extends Entity, Parsable {
48152
+ /**
48153
+ * Indicates that the resource is in migration state and is currently being used for migration purposes.
48154
+ */
48155
+ creationMode?: EngagementCreationMode | null;
48156
+ /**
48157
+ * The messages in a Viva Engage conversation.
48158
+ */
48159
+ messages?: EngagementConversationMessage[] | null;
48160
+ /**
48161
+ * The starter property
48162
+ */
48163
+ starter?: EngagementConversationMessage | null;
48164
+ /**
48165
+ * The unique ID of the first message in a Viva Engage conversation.
48166
+ */
48167
+ starterId?: string | null;
48168
+ }
48169
+ /**
48170
+ * A Viva Engage conversation discussion message.
48171
+ */
48172
+ export interface EngagementConversationDiscussionMessage extends EngagementConversationMessage, Parsable {
48173
+ }
48174
+ /**
48175
+ * A Viva Engage conversation message.
48176
+ */
48177
+ export interface EngagementConversationMessage extends Entity, Parsable {
48178
+ /**
48179
+ * The body property
48180
+ */
48181
+ body?: ItemBody | null;
48182
+ /**
48183
+ * The conversation property
48184
+ */
48185
+ conversation?: EngagementConversation | null;
48186
+ /**
48187
+ * The date and time when the message was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
48188
+ */
48189
+ createdDateTime?: Date | null;
48190
+ /**
48191
+ * Indicates that the resource is in migration state and is currently being used for migration purposes.
48192
+ */
48193
+ creationMode?: EngagementCreationMode | null;
48194
+ /**
48195
+ * Identity of the sender of the message.
48196
+ */
48197
+ from?: EngagementIdentitySet | null;
48198
+ /**
48199
+ * The date and time when message was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
48200
+ */
48201
+ lastModifiedDateTime?: Date | null;
48202
+ /**
48203
+ * A collection of reactions (such as like and smile) that users have applied to this message.
48204
+ */
48205
+ reactions?: EngagementConversationMessageReaction[] | null;
48206
+ /**
48207
+ * A collection of messages that are replies to this message and form a threaded discussion.
48208
+ */
48209
+ replies?: EngagementConversationMessage[] | null;
48210
+ /**
48211
+ * The parent message to which this message is a reply, if it is part of a reply chain.
48212
+ */
48213
+ replyTo?: EngagementConversationMessage | null;
48214
+ /**
48215
+ * The ID of the parent message to which this message is a reply, if applicable.
48216
+ */
48217
+ replyToId?: string | null;
48218
+ }
48219
+ export interface EngagementConversationMessageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
48220
+ /**
48221
+ * The value property
48222
+ */
48223
+ value?: EngagementConversationMessage[] | null;
48224
+ }
48225
+ /**
48226
+ * A reaction to a conversation message.
48227
+ */
48228
+ export interface EngagementConversationMessageReaction extends Entity, Parsable {
48229
+ /**
48230
+ * Date and time when the reaction was added. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
48231
+ */
48232
+ createdDateTime?: Date | null;
48233
+ /**
48234
+ * The reactionBy property
48235
+ */
48236
+ reactionBy?: EngagementIdentitySet | null;
48237
+ /**
48238
+ * Types of reactions to conversation messages.
48239
+ */
48240
+ reactionType?: EngagementConversationMessageReactionType | null;
48241
+ }
48242
+ export interface EngagementConversationMessageReactionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
48243
+ /**
48244
+ * The value property
48245
+ */
48246
+ value?: EngagementConversationMessageReaction[] | null;
48247
+ }
48248
+ export type EngagementConversationMessageReactionType = (typeof EngagementConversationMessageReactionTypeObject)[keyof typeof EngagementConversationMessageReactionTypeObject];
48249
+ export type EngagementConversationModerationState = (typeof EngagementConversationModerationStateObject)[keyof typeof EngagementConversationModerationStateObject];
48250
+ /**
48251
+ * A Viva Engage conversation question message.
48252
+ */
48253
+ export interface EngagementConversationQuestionMessage extends EngagementConversationMessage, Parsable {
48254
+ /**
48255
+ * The title of the question post message on Viva Engage. Inherited from engagementConversationMessage.
48256
+ */
48257
+ title?: string | null;
48258
+ }
48259
+ /**
48260
+ * A Viva Engage conversation system message.
48261
+ */
48262
+ export interface EngagementConversationSystemMessage extends EngagementConversationMessage, Parsable {
48263
+ }
48264
+ export type EngagementCreationMode = (typeof EngagementCreationModeObject)[keyof typeof EngagementCreationModeObject];
48265
+ /**
48266
+ * The Viva Engage identities.
48267
+ */
48268
+ export interface EngagementIdentitySet extends IdentitySet, Parsable {
48269
+ /**
48270
+ * Optional. The audience associated with this action.
48271
+ */
48272
+ audience?: Identity | null;
48273
+ /**
48274
+ * Optional. The group associated with this action.
48275
+ */
48276
+ group?: Identity | null;
48277
+ }
47134
48278
  /**
47135
48279
  * Enrollment Configuration Assignment
47136
48280
  */
@@ -48713,6 +49857,10 @@ export interface Group extends DirectoryObject, Parsable {
48713
49857
  * Contains the on-premises security identifier (SID) for the group synchronized from on-premises to the cloud. Read-only. Returned by default. Supports $filter (eq including on null values).
48714
49858
  */
48715
49859
  onPremisesSecurityIdentifier?: string | null;
49860
+ /**
49861
+ * The onPremisesSyncBehavior property
49862
+ */
49863
+ onPremisesSyncBehavior?: OnPremisesSyncBehavior | null;
48716
49864
  /**
48717
49865
  * true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).
48718
49866
  */
@@ -49120,6 +50268,10 @@ export interface IdentityContainer extends Entity, Parsable {
49120
50268
  * The identityProviders property
49121
50269
  */
49122
50270
  identityProviders?: IdentityProviderBase[] | null;
50271
+ /**
50272
+ * The riskPrevention property
50273
+ */
50274
+ riskPrevention?: RiskPreventionContainer | null;
49123
50275
  /**
49124
50276
  * Represents entry point for identity userflow attributes.
49125
50277
  */
@@ -50080,7 +51232,7 @@ export interface IosCompliancePolicy extends DeviceCompliancePolicy, Parsable {
50080
51232
  */
50081
51233
  passcodeRequiredType?: RequiredPasswordType | null;
50082
51234
  /**
50083
- * Devices must not be jailbroken or rooted.
51235
+ * Indicates the device should not be jailbroken. When TRUE, if the device is detected as jailbroken it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device jailbroken state. Default is FALSE.
50084
51236
  */
50085
51237
  securityBlockJailbrokenDevices?: boolean | null;
50086
51238
  }
@@ -50101,31 +51253,6 @@ export interface IosCustomConfiguration extends DeviceConfiguration, Parsable {
50101
51253
  */
50102
51254
  payloadName?: string | null;
50103
51255
  }
50104
- /**
50105
- * Contains properties used to assign an iOS iOS Declarative Device Management (DDM) Line Of Business (LOB) mobile app to a group.
50106
- */
50107
- export interface IosDdmLobAppAssignmentSettings extends MobileAppAssignmentSettings, Parsable {
50108
- /**
50109
- * Domain names to associate with the app
50110
- */
50111
- associatedDomains?: string[] | null;
50112
- /**
50113
- * When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
50114
- */
50115
- associatedDomainsDirectDownloadAllowed?: boolean | null;
50116
- /**
50117
- * When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
50118
- */
50119
- preventManagedAppBackup?: boolean | null;
50120
- /**
50121
- * When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
50122
- */
50123
- tapToPayScreenLockEnabled?: boolean | null;
50124
- /**
50125
- * The unique identifier of the relay to associate with the app.
50126
- */
50127
- vpnConfigurationId?: string | null;
50128
- }
50129
51256
  /**
50130
51257
  * iOS Device Features Configuration Profile.
50131
51258
  */
@@ -50909,35 +52036,35 @@ export interface IosMinimumOperatingSystem extends AdditionalDataHolder, BackedM
50909
52036
  */
50910
52037
  odataType?: string | null;
50911
52038
  /**
50912
- * When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52039
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 10.0 or later is required to install the app. If 'False', iOS Version 10.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50913
52040
  */
50914
52041
  v100?: boolean | null;
50915
52042
  /**
50916
- * When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52043
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 11.0 or later is required to install the app. If 'False', iOS Version 11.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50917
52044
  */
50918
52045
  v110?: boolean | null;
50919
52046
  /**
50920
- * When TRUE, only Version 12.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52047
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 12.0 or later is required to install the app. If 'False', iOS Version 12.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50921
52048
  */
50922
52049
  v120?: boolean | null;
50923
52050
  /**
50924
- * When TRUE, only Version 13.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52051
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 13.0 or later is required to install the app. If 'False', iOS Version 13.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50925
52052
  */
50926
52053
  v130?: boolean | null;
50927
52054
  /**
50928
- * When TRUE, only Version 14.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52055
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 14.0 or later is required to install the app. If 'False', iOS Version 14.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50929
52056
  */
50930
52057
  v140?: boolean | null;
50931
52058
  /**
50932
- * When TRUE, only Version 15.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52059
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 15.0 or later is required to install the app. If 'False', iOS Version 15.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50933
52060
  */
50934
52061
  v150?: boolean | null;
50935
52062
  /**
50936
- * When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52063
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 8.0 or later is required to install the app. If 'False', iOS Version 8.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50937
52064
  */
50938
52065
  v80?: boolean | null;
50939
52066
  /**
50940
- * When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
52067
+ * Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 9.0 or later is required to install the app. If 'False', iOS Version 9.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
50941
52068
  */
50942
52069
  v90?: boolean | null;
50943
52070
  }
@@ -52772,11 +53899,11 @@ export interface MacOSLobApp extends MobileLobApp, Parsable {
52772
53899
  */
52773
53900
  childApps?: MacOSLobChildApp[] | null;
52774
53901
  /**
52775
- * When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature.
53902
+ * When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. The default value is FALSE.
52776
53903
  */
52777
53904
  ignoreVersionDetection?: boolean | null;
52778
53905
  /**
52779
- * When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged.
53906
+ * When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. The default value is FALSE.
52780
53907
  */
52781
53908
  installAsManaged?: boolean | null;
52782
53909
  /**
@@ -52863,51 +53990,51 @@ export interface MacOSMinimumOperatingSystem extends AdditionalDataHolder, Backe
52863
53990
  */
52864
53991
  odataType?: string | null;
52865
53992
  /**
52866
- * When TRUE, indicates OS X 10.10 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
53993
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.10 or later is required to install the app. If 'False', OS X Version 10.10 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52867
53994
  */
52868
53995
  v1010?: boolean | null;
52869
53996
  /**
52870
- * When TRUE, indicates OS X 10.11 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
53997
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.11 or later is required to install the app. If 'False', OS X Version 10.11 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52871
53998
  */
52872
53999
  v1011?: boolean | null;
52873
54000
  /**
52874
- * When TRUE, indicates macOS 10.12 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54001
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.12 or later is required to install the app. If 'False', OS X Version 10.12 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52875
54002
  */
52876
54003
  v1012?: boolean | null;
52877
54004
  /**
52878
- * When TRUE, indicates macOS 10.13 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54005
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.13 or later is required to install the app. If 'False', OS X Version 10.13 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52879
54006
  */
52880
54007
  v1013?: boolean | null;
52881
54008
  /**
52882
- * When TRUE, indicates macOS 10.14 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54009
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.14 or later is required to install the app. If 'False', OS X Version 10.14 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52883
54010
  */
52884
54011
  v1014?: boolean | null;
52885
54012
  /**
52886
- * When TRUE, indicates macOS 10.15 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54013
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.15 or later is required to install the app. If 'False', OS X Version 10.15 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52887
54014
  */
52888
54015
  v1015?: boolean | null;
52889
54016
  /**
52890
- * When TRUE, indicates Mac OS X 10.7 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54017
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.7 or later is required to install the app. If 'False', OS X Version 10.7 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52891
54018
  */
52892
54019
  v107?: boolean | null;
52893
54020
  /**
52894
- * When TRUE, indicates OS X 10.8 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54021
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.8 or later is required to install the app. If 'False', OS X Version 10.8 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52895
54022
  */
52896
54023
  v108?: boolean | null;
52897
54024
  /**
52898
- * When TRUE, indicates OS X 10.9 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54025
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.9 or later is required to install the app. If 'False', OS X Version 10.9 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52899
54026
  */
52900
54027
  v109?: boolean | null;
52901
54028
  /**
52902
- * When TRUE, indicates macOS 11.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54029
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 11.0 or later is required to install the app. If 'False', OS X Version 11.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52903
54030
  */
52904
54031
  v110?: boolean | null;
52905
54032
  /**
52906
- * When TRUE, indicates macOS 12.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54033
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 12.0 or later is required to install the app. If 'False', OS X Version 12.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52907
54034
  */
52908
54035
  v120?: boolean | null;
52909
54036
  /**
52910
- * When TRUE, indicates macOS 13.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
54037
+ * Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 13.0 or later is required to install the app. If 'False', OS X Version 13.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
52911
54038
  */
52912
54039
  v130?: boolean | null;
52913
54040
  }
@@ -53448,19 +54575,19 @@ export interface ManagedAppPolicyCollectionResponse extends BaseCollectionPagina
53448
54575
  */
53449
54576
  export interface ManagedAppPolicyDeploymentSummary extends Entity, Parsable {
53450
54577
  /**
53451
- * Not yet documented
54578
+ * The configurationDeployedUserCount property
53452
54579
  */
53453
54580
  configurationDeployedUserCount?: number | null;
53454
54581
  /**
53455
- * Not yet documented
54582
+ * The configurationDeploymentSummaryPerApp property
53456
54583
  */
53457
54584
  configurationDeploymentSummaryPerApp?: ManagedAppPolicyDeploymentSummaryPerApp[] | null;
53458
54585
  /**
53459
- * Not yet documented
54586
+ * The displayName property
53460
54587
  */
53461
54588
  displayName?: string | null;
53462
54589
  /**
53463
- * Not yet documented
54590
+ * The lastRefreshTime property
53464
54591
  */
53465
54592
  lastRefreshTime?: Date | null;
53466
54593
  /**
@@ -53538,7 +54665,7 @@ export interface ManagedAppProtection extends ManagedAppPolicy, Parsable {
53538
54665
  */
53539
54666
  managedBrowserToOpenLinksRequired?: boolean | null;
53540
54667
  /**
53541
- * Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped.
54668
+ * Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped. Valid values 1 to 65535
53542
54669
  */
53543
54670
  maximumPinRetries?: number | null;
53544
54671
  /**
@@ -53858,6 +54985,10 @@ export interface ManagedDevice extends Entity, Parsable {
53858
54985
  * Reports device management certificate expiration date. This property is read-only.
53859
54986
  */
53860
54987
  managementCertificateExpirationDate?: Date | null;
54988
+ /**
54989
+ * Management state of device in Microsoft Intune.
54990
+ */
54991
+ managementState?: ManagementState | null;
53861
54992
  /**
53862
54993
  * Manufacturer of the device. This property is read-only.
53863
54994
  */
@@ -54352,7 +55483,7 @@ export interface ManagedMobileLobApp extends ManagedApp, Parsable {
54352
55483
  */
54353
55484
  committedContentVersion?: string | null;
54354
55485
  /**
54355
- * The list of content versions for this app.
55486
+ * The list of content versions for this app. This property is read-only.
54356
55487
  */
54357
55488
  contentVersions?: MobileAppContent[] | null;
54358
55489
  /**
@@ -54360,7 +55491,7 @@ export interface ManagedMobileLobApp extends ManagedApp, Parsable {
54360
55491
  */
54361
55492
  fileName?: string | null;
54362
55493
  /**
54363
- * The total size, including all uploaded files.
55494
+ * The total size, including all uploaded files. This property is read-only.
54364
55495
  */
54365
55496
  size?: number | null;
54366
55497
  }
@@ -54371,6 +55502,7 @@ export interface ManagedMobileLobAppCollectionResponse extends BaseCollectionPag
54371
55502
  value?: ManagedMobileLobApp[] | null;
54372
55503
  }
54373
55504
  export type ManagementAgentType = (typeof ManagementAgentTypeObject)[keyof typeof ManagementAgentTypeObject];
55505
+ export type ManagementState = (typeof ManagementStateObject)[keyof typeof ManagementStateObject];
54374
55506
  export type MdmAppConfigKeyType = (typeof MdmAppConfigKeyTypeObject)[keyof typeof MdmAppConfigKeyTypeObject];
54375
55507
  export type MdmAuthority = (typeof MdmAuthorityObject)[keyof typeof MdmAuthorityObject];
54376
55508
  /**
@@ -54973,7 +56105,7 @@ export interface Message extends OutlookItem, Parsable {
54973
56105
  */
54974
56106
  uniqueBody?: ItemBody | null;
54975
56107
  /**
54976
- * The URL to open the message in Outlook on the web.You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not already signed in with the browser.This URL cannot be accessed from within an iFrame.
56108
+ * The URL to open the message in Outlook on the web.You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not already signed in with the browser.This URL cannot be accessed from within an iFrame.NOTE: When using this URL to access a message from a mailbox with delegate permissions, both the signed-in user and the target mailbox must be in the same database region. For example, an error is returned when a user with a mailbox in the EUR (Europe) region attempts to access messages from a mailbox in the NAM (North America) region.
54977
56109
  */
54978
56110
  webLink?: string | null;
54979
56111
  }
@@ -55496,7 +56628,7 @@ export interface MobileApp extends Entity, Parsable {
55496
56628
  */
55497
56629
  categories?: MobileAppCategory[] | null;
55498
56630
  /**
55499
- * The date and time the app was created.
56631
+ * The date and time the app was created. This property is read-only.
55500
56632
  */
55501
56633
  createdDateTime?: Date | null;
55502
56634
  /**
@@ -55524,7 +56656,7 @@ export interface MobileApp extends Entity, Parsable {
55524
56656
  */
55525
56657
  largeIcon?: MimeContent | null;
55526
56658
  /**
55527
- * The date and time the app was last modified.
56659
+ * The date and time the app was last modified. This property is read-only.
55528
56660
  */
55529
56661
  lastModifiedDateTime?: Date | null;
55530
56662
  /**
@@ -55593,7 +56725,7 @@ export interface MobileAppCategory extends Entity, Parsable {
55593
56725
  */
55594
56726
  displayName?: string | null;
55595
56727
  /**
55596
- * The date and time the mobileAppCategory was last modified.
56728
+ * The date and time the mobileAppCategory was last modified. This property is read-only.
55597
56729
  */
55598
56730
  lastModifiedDateTime?: Date | null;
55599
56731
  }
@@ -55633,19 +56765,19 @@ export interface MobileAppContentCollectionResponse extends BaseCollectionPagina
55633
56765
  */
55634
56766
  export interface MobileAppContentFile extends Entity, Parsable {
55635
56767
  /**
55636
- * The Azure Storage URI.
56768
+ * Indicates the Azure Storage URI that the file is uploaded to. Created by the service upon receiving a valid mobileAppContentFile. Read-only. This property is read-only.
55637
56769
  */
55638
56770
  azureStorageUri?: string | null;
55639
56771
  /**
55640
- * The time the Azure storage Uri expires.
56772
+ * Indicates the date and time when the Azure storage URI expires, in ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. This property is read-only.
55641
56773
  */
55642
56774
  azureStorageUriExpirationDateTime?: Date | null;
55643
56775
  /**
55644
- * The time the file was created.
56776
+ * Indicates created date and time associated with app content file, in ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. This property is read-only.
55645
56777
  */
55646
56778
  createdDateTime?: Date | null;
55647
56779
  /**
55648
- * A value indicating whether the file is committed.
56780
+ * A value indicating whether the file is committed. A committed app content file has been fully uploaded and validated by the Intune service. TRUE means that app content file is committed, FALSE means that app content file is not committed. Defaults to FALSE. Read-only. This property is read-only.
55649
56781
  */
55650
56782
  isCommitted?: boolean | null;
55651
56783
  /**
@@ -55653,19 +56785,19 @@ export interface MobileAppContentFile extends Entity, Parsable {
55653
56785
  */
55654
56786
  isDependency?: boolean | null;
55655
56787
  /**
55656
- * The manifest information.
56788
+ * Indicates the manifest information, containing file metadata.
55657
56789
  */
55658
56790
  manifest?: ArrayBuffer | null;
55659
56791
  /**
55660
- * the file name.
56792
+ * Indicates the name of the file.
55661
56793
  */
55662
56794
  name?: string | null;
55663
56795
  /**
55664
- * The size of the file prior to encryption.
56796
+ * Indicates the original size of the file, in bytes.
55665
56797
  */
55666
56798
  size?: number | null;
55667
56799
  /**
55668
- * The size of the file after encryption.
56800
+ * Indicates the size of the file after encryption, in bytes.
55669
56801
  */
55670
56802
  sizeEncrypted?: number | null;
55671
56803
  /**
@@ -55794,7 +56926,7 @@ export interface MobileLobApp extends MobileApp, Parsable {
55794
56926
  */
55795
56927
  committedContentVersion?: string | null;
55796
56928
  /**
55797
- * The list of content versions for this app.
56929
+ * The list of content versions for this app. This property is read-only.
55798
56930
  */
55799
56931
  contentVersions?: MobileAppContent[] | null;
55800
56932
  /**
@@ -55802,7 +56934,7 @@ export interface MobileLobApp extends MobileApp, Parsable {
55802
56934
  */
55803
56935
  fileName?: string | null;
55804
56936
  /**
55805
- * The total size, including all uploaded files.
56937
+ * The total size, including all uploaded files. This property is read-only.
55806
56938
  */
55807
56939
  size?: number | null;
55808
56940
  }
@@ -55811,19 +56943,19 @@ export interface MobileLobApp extends MobileApp, Parsable {
55811
56943
  */
55812
56944
  export interface MobileThreatDefenseConnector extends Entity, Parsable {
55813
56945
  /**
55814
- * When TRUE, indicates the Mobile Threat Defense partner may collect metadata about installed applications from Intune for IOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about installed applications from Intune for IOS devices. Default value is FALSE.
56946
+ * When TRUE, indicates the Mobile Threat Defense partner may collect metadata about installed applications from Intune for iOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about installed applications from Intune for iOS devices. Default value is FALSE.
55815
56947
  */
55816
56948
  allowPartnerToCollectIOSApplicationMetadata?: boolean | null;
55817
56949
  /**
55818
- * When TRUE, indicates the Mobile Threat Defense partner may collect metadata about personally installed applications from Intune for IOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about personally installed applications from Intune for IOS devices. Default value is FALSE.
56950
+ * When TRUE, indicates the Mobile Threat Defense partner may collect metadata about personally installed applications from Intune for iOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about personally installed applications from Intune for iOS devices. Default value is FALSE.
55819
56951
  */
55820
56952
  allowPartnerToCollectIOSPersonalApplicationMetadata?: boolean | null;
55821
56953
  /**
55822
- * For Android, set whether Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant
56954
+ * When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking an Android device compliant. When FALSE, indicates that Intune may mark an Android device compliant before receiving data from the Mobile Threat Defense partner.
55823
56955
  */
55824
56956
  androidDeviceBlockedOnMissingPartnerData?: boolean | null;
55825
56957
  /**
55826
- * For Android, set whether data from the Mobile Threat Defense partner should be used during compliance evaluations
56958
+ * When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Android devices. Default value is FALSE.
55827
56959
  */
55828
56960
  androidEnabled?: boolean | null;
55829
56961
  /**
@@ -55831,15 +56963,15 @@ export interface MobileThreatDefenseConnector extends Entity, Parsable {
55831
56963
  */
55832
56964
  androidMobileApplicationManagementEnabled?: boolean | null;
55833
56965
  /**
55834
- * For IOS, set whether Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant
56966
+ * When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
55835
56967
  */
55836
56968
  iosDeviceBlockedOnMissingPartnerData?: boolean | null;
55837
56969
  /**
55838
- * For IOS, get or set whether data from the Mobile Threat Defense partner should be used during compliance evaluations
56970
+ * When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for iOS devices. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for iOS devices. Default value is FALSE.
55839
56971
  */
55840
56972
  iosEnabled?: boolean | null;
55841
56973
  /**
55842
- * When TRUE, inidicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for IOS devices. When FALSE, inidicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for IOS devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
56974
+ * When TRUE, inidicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for iOS devices. When FALSE, inidicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for iOS devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
55843
56975
  */
55844
56976
  iosMobileApplicationManagementEnabled?: boolean | null;
55845
56977
  /**
@@ -55855,19 +56987,19 @@ export interface MobileThreatDefenseConnector extends Entity, Parsable {
55855
56987
  */
55856
56988
  partnerState?: MobileThreatPartnerTenantState | null;
55857
56989
  /**
55858
- * Get or Set days the per tenant tolerance to unresponsiveness for this partner integration
56990
+ * Indicates the number of days without receiving a heartbeat from a Mobile Threat Defense partner before the partner is marked as unresponsive. Intune will the ignore the data from this Mobile Threat Defense Partner for next compliance calculation.
55859
56991
  */
55860
56992
  partnerUnresponsivenessThresholdInDays?: number | null;
55861
56993
  /**
55862
- * Get or set whether to block devices on the enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner
56994
+ * When TRUE, indicates that Intune will mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. When FALSE, indicates that Intune will not mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. Default value is FALSE.
55863
56995
  */
55864
56996
  partnerUnsupportedOsVersionBlocked?: boolean | null;
55865
56997
  /**
55866
- * When TRUE, inidicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant for Windows. When FALSE, inidicates that Intune may make a device compliant without receiving data from the Mobile Threat Defense partner for Windows. Default value is FALSE.
56998
+ * When TRUE, indicates that Intune must receive data from the data sync partner prior to marking a device compliant for Windows. When FALSE, indicates that Intune may mark a device compliant without receiving data from the data sync partner for Windows. Default value is FALSE.
55867
56999
  */
55868
57000
  windowsDeviceBlockedOnMissingPartnerData?: boolean | null;
55869
57001
  /**
55870
- * When TRUE, inidicates that data from the Mobile Threat Defense partner can be used during compliance evaluations for Windows. When FALSE, inidicates that data from the Mobile Threat Defense partner should not be used during compliance evaluations for Windows. Default value is FALSE.
57002
+ * When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for Windows. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Windows. Default value is FALSE.
55871
57003
  */
55872
57004
  windowsEnabled?: boolean | null;
55873
57005
  }
@@ -57072,6 +58204,9 @@ export interface OnInteractiveAuthFlowStartListener extends AuthenticationEventL
57072
58204
  */
57073
58205
  handler?: OnInteractiveAuthFlowStartHandler | null;
57074
58206
  }
58207
+ /**
58208
+ * Represents a Microsoft online meeting.
58209
+ */
57075
58210
  export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
57076
58211
  /**
57077
58212
  * The content stream of the attendee report of a Microsoft Teams live event. Read-only.
@@ -57243,6 +58378,37 @@ export interface OnlineMeetingCollectionResponse extends BaseCollectionPaginatio
57243
58378
  value?: OnlineMeeting[] | null;
57244
58379
  }
57245
58380
  export type OnlineMeetingContentSharingDisabledReason = (typeof OnlineMeetingContentSharingDisabledReasonObject)[keyof typeof OnlineMeetingContentSharingDisabledReasonObject];
58381
+ /**
58382
+ * A conversation for Teams QA online meeting.
58383
+ */
58384
+ export interface OnlineMeetingEngagementConversation extends EngagementConversation, Parsable {
58385
+ /**
58386
+ * Represents the moderation state of an Engage conversation message.
58387
+ */
58388
+ moderationState?: EngagementConversationModerationState | null;
58389
+ /**
58390
+ * The onlineMeeting property
58391
+ */
58392
+ onlineMeeting?: OnlineMeeting | null;
58393
+ /**
58394
+ * The unique identifier of the online meeting associated with this conversation. The online meeting ID links the conversation to a specific meeting instance.
58395
+ */
58396
+ onlineMeetingId?: string | null;
58397
+ /**
58398
+ * The organizer property
58399
+ */
58400
+ organizer?: EngagementIdentitySet | null;
58401
+ /**
58402
+ * The number of upvotes the conversation received.
58403
+ */
58404
+ upvoteCount?: number | null;
58405
+ }
58406
+ export interface OnlineMeetingEngagementConversationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
58407
+ /**
58408
+ * The value property
58409
+ */
58410
+ value?: OnlineMeetingEngagementConversation[] | null;
58411
+ }
57246
58412
  export interface OnlineMeetingInfo extends AdditionalDataHolder, BackedModel, Parsable {
57247
58413
  /**
57248
58414
  * Stores model information.
@@ -57573,6 +58739,12 @@ export interface OnPremisesProvisioningError extends AdditionalDataHolder, Backe
57573
58739
  */
57574
58740
  value?: string | null;
57575
58741
  }
58742
+ export interface OnPremisesSyncBehavior extends Entity, Parsable {
58743
+ /**
58744
+ * The isCloudManaged property
58745
+ */
58746
+ isCloudManaged?: boolean | null;
58747
+ }
57576
58748
  export interface OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension, Parsable {
57577
58749
  /**
57578
58750
  * Collection of claims to be returned by the API called by this custom authentication extension. Used to populate claims mapping experience in Microsoft Entra admin center. Optional.
@@ -58105,6 +59277,10 @@ export interface OrgContact extends DirectoryObject, Parsable {
58105
59277
  * List of any synchronization provisioning errors for this organizational contact. Supports $filter (eq, not for category and propertyCausingError), /$count eq 0, /$count ne 0.
58106
59278
  */
58107
59279
  onPremisesProvisioningErrors?: OnPremisesProvisioningError[] | null;
59280
+ /**
59281
+ * The onPremisesSyncBehavior property
59282
+ */
59283
+ onPremisesSyncBehavior?: OnPremisesSyncBehavior | null;
58108
59284
  /**
58109
59285
  * true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). Supports $filter (eq, ne, not, in, and eq for null values).
58110
59286
  */
@@ -61853,7 +63029,7 @@ export interface ProtectionRuleBase extends Entity, Parsable {
61853
63029
  */
61854
63030
  errorEscaped?: PublicError | null;
61855
63031
  /**
61856
- * The isAutoApplyEnabled property
63032
+ * true indicates that the protection rule is dynamic; false that it's static.
61857
63033
  */
61858
63034
  isAutoApplyEnabled?: boolean | null;
61859
63035
  /**
@@ -61865,12 +63041,13 @@ export interface ProtectionRuleBase extends Entity, Parsable {
61865
63041
  */
61866
63042
  lastModifiedDateTime?: Date | null;
61867
63043
  /**
61868
- * The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue. The draft member is currently unsupported.
63044
+ * The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue, updateRequested, deleteRequested. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: updateRequested , deleteRequested. The draft member is currently unsupported.
61869
63045
  */
61870
63046
  status?: ProtectionRuleStatus | null;
61871
63047
  }
61872
63048
  export type ProtectionRuleStatus = (typeof ProtectionRuleStatusObject)[keyof typeof ProtectionRuleStatusObject];
61873
63049
  export type ProtectionScopeState = (typeof ProtectionScopeStateObject)[keyof typeof ProtectionScopeStateObject];
63050
+ export type ProtectionSource = (typeof ProtectionSourceObject)[keyof typeof ProtectionSourceObject];
61874
63051
  export interface ProtectionUnitBase extends Entity, Parsable {
61875
63052
  /**
61876
63053
  * The identity of the person who created the protection unit.
@@ -61892,10 +63069,18 @@ export interface ProtectionUnitBase extends Entity, Parsable {
61892
63069
  * Timestamp of the last modification of this protection unit. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
61893
63070
  */
61894
63071
  lastModifiedDateTime?: Date | null;
63072
+ /**
63073
+ * The date and time when protection unit offboard was requested. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
63074
+ */
63075
+ offboardRequestedDateTime?: Date | null;
61895
63076
  /**
61896
63077
  * The unique identifier of the protection policy based on which protection unit was created.
61897
63078
  */
61898
63079
  policyId?: string | null;
63080
+ /**
63081
+ * The protectionSources property
63082
+ */
63083
+ protectionSources?: ProtectionSource[] | null;
61899
63084
  /**
61900
63085
  * The status of the protection unit. The possible values are: protectRequested, protected, unprotectRequested, unprotected, removeRequested, unknownFutureValue, offboardRequested, offboarded, cancelOffboardRequested. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: offboardRequested, offboarded, cancelOffboardRequested.
61901
63086
  */
@@ -62494,6 +63679,51 @@ export interface ReadingAssignmentSubmissionCollectionResponse extends BaseColle
62494
63679
  */
62495
63680
  value?: ReadingAssignmentSubmission[] | null;
62496
63681
  }
63682
+ export interface ReadingCoachPassage extends Entity, Parsable {
63683
+ /**
63684
+ * Indicates if the reading passage was completed.
63685
+ */
63686
+ isReadingCompleted?: boolean | null;
63687
+ /**
63688
+ * The language of the reading passage.
63689
+ */
63690
+ languageTag?: string | null;
63691
+ /**
63692
+ * The date and time when the Reading Coach passage was practiced. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
63693
+ */
63694
+ practicedAtDateTime?: Date | null;
63695
+ /**
63696
+ * The list of challenging words for the student that they can practice further.
63697
+ */
63698
+ practiceWords?: string[] | null;
63699
+ /**
63700
+ * The storyType property
63701
+ */
63702
+ storyType?: ReadingCoachStoryType | null;
63703
+ /**
63704
+ * ID of the student that practiced the reading passage.
63705
+ */
63706
+ studentId?: string | null;
63707
+ /**
63708
+ * The time the student spent reading in seconds.
63709
+ */
63710
+ timeSpentReadingInSeconds?: number | null;
63711
+ /**
63712
+ * The percentage of words that the student read correctly.
63713
+ */
63714
+ wordsAccuracyPercentage?: number | null;
63715
+ /**
63716
+ * The rate the student read at in words per minute.
63717
+ */
63718
+ wordsPerMinute?: number | null;
63719
+ }
63720
+ export interface ReadingCoachPassageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
63721
+ /**
63722
+ * The value property
63723
+ */
63724
+ value?: ReadingCoachPassage[] | null;
63725
+ }
63726
+ export type ReadingCoachStoryType = (typeof ReadingCoachStoryTypeObject)[keyof typeof ReadingCoachStoryTypeObject];
62497
63727
  export interface RecentNotebook extends AdditionalDataHolder, BackedModel, Parsable {
62498
63728
  /**
62499
63729
  * Stores model information.
@@ -63173,7 +64403,7 @@ export interface Report extends AdditionalDataHolder, BackedModel, Parsable {
63173
64403
  */
63174
64404
  backingStoreEnabled?: boolean | null;
63175
64405
  /**
63176
- * Not yet documented
64406
+ * The http content that has the data
63177
64407
  */
63178
64408
  content?: ArrayBuffer | null;
63179
64409
  /**
@@ -63224,10 +64454,18 @@ export interface ReportsRoot extends Entity, Parsable {
63224
64454
  * Details of submitted reading assignments.
63225
64455
  */
63226
64456
  readingAssignmentSubmissions?: ReadingAssignmentSubmission[] | null;
64457
+ /**
64458
+ * Details of practiced Reading Coach passages.
64459
+ */
64460
+ readingCoachPassages?: ReadingCoachPassage[] | null;
63227
64461
  /**
63228
64462
  * Details of check-in responses.
63229
64463
  */
63230
64464
  reflectCheckInResponses?: ReflectCheckInResponse[] | null;
64465
+ /**
64466
+ * Details of submitted speaker assignments.
64467
+ */
64468
+ speakerAssignmentSubmissions?: SpeakerAssignmentSubmission[] | null;
63231
64469
  }
63232
64470
  export interface Request extends Entity, Parsable {
63233
64471
  /**
@@ -64003,6 +65241,24 @@ export interface RiskDetectionCollectionResponse extends BaseCollectionPaginatio
64003
65241
  export type RiskDetectionTimingType = (typeof RiskDetectionTimingTypeObject)[keyof typeof RiskDetectionTimingTypeObject];
64004
65242
  export type RiskEventType = (typeof RiskEventTypeObject)[keyof typeof RiskEventTypeObject];
64005
65243
  export type RiskLevel = (typeof RiskLevelObject)[keyof typeof RiskLevelObject];
65244
+ export interface RiskPreventionContainer extends AdditionalDataHolder, BackedModel, Parsable {
65245
+ /**
65246
+ * Stores model information.
65247
+ */
65248
+ backingStoreEnabled?: boolean | null;
65249
+ /**
65250
+ * The OdataType property
65251
+ */
65252
+ odataType?: string | null;
65253
+ /**
65254
+ * The webApplicationFirewallProviders property
65255
+ */
65256
+ webApplicationFirewallProviders?: WebApplicationFirewallProvider[] | null;
65257
+ /**
65258
+ * The webApplicationFirewallVerifications property
65259
+ */
65260
+ webApplicationFirewallVerifications?: WebApplicationFirewallVerificationModel[] | null;
65261
+ }
64006
65262
  export interface RiskServicePrincipalActivity extends AdditionalDataHolder, BackedModel, Parsable {
64007
65263
  /**
64008
65264
  * Stores model information.
@@ -64173,19 +65429,19 @@ export interface RiskyUserHistoryItemCollectionResponse extends BaseCollectionPa
64173
65429
  */
64174
65430
  export interface RoleAssignment extends Entity, Parsable {
64175
65431
  /**
64176
- * Description of the Role Assignment.
65432
+ * Indicates the description of the role assignment. For example: 'All administrators, employees and scope tags associated with the Houston office.' Max length is 1024 characters.
64177
65433
  */
64178
65434
  description?: string | null;
64179
65435
  /**
64180
- * The display or friendly name of the role Assignment.
65436
+ * Indicates the display name of the role assignment. For example: 'Houston administrators and users'. Max length is 128 characters.
64181
65437
  */
64182
65438
  displayName?: string | null;
64183
65439
  /**
64184
- * List of ids of role scope member security groups. These are IDs from Azure Active Directory.
65440
+ * Indicates the list of resource scope security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}.
64185
65441
  */
64186
65442
  resourceScopes?: string[] | null;
64187
65443
  /**
64188
- * Role definition this assignment is part of.
65444
+ * Indicates the role definition for this role assignment.
64189
65445
  */
64190
65446
  roleDefinition?: RoleDefinition | null;
64191
65447
  }
@@ -65788,6 +67044,13 @@ export declare function serializeAccessPackageCatalogCollectionResponse(writer:
65788
67044
  * @param writer Serialization writer to use to serialize this model
65789
67045
  */
65790
67046
  export declare function serializeAccessPackageCollectionResponse(writer: SerializationWriter, accessPackageCollectionResponse?: Partial<AccessPackageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
67047
+ /**
67048
+ * Serializes information the current object
67049
+ * @param AccessPackageDynamicApprovalStage The instance to serialize from.
67050
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67051
+ * @param writer Serialization writer to use to serialize this model
67052
+ */
67053
+ export declare function serializeAccessPackageDynamicApprovalStage(writer: SerializationWriter, accessPackageDynamicApprovalStage?: Partial<AccessPackageDynamicApprovalStage> | undefined | null, isSerializingDerivedType?: boolean): void;
65791
67054
  /**
65792
67055
  * Serializes information the current object
65793
67056
  * @param AccessPackageLocalizedText The instance to serialize from.
@@ -65823,6 +67086,13 @@ export declare function serializeAccessPackageQuestion(writer: SerializationWrit
65823
67086
  * @param writer Serialization writer to use to serialize this model
65824
67087
  */
65825
67088
  export declare function serializeAccessPackageQuestionCollectionResponse(writer: SerializationWriter, accessPackageQuestionCollectionResponse?: Partial<AccessPackageQuestionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
67089
+ /**
67090
+ * Serializes information the current object
67091
+ * @param AccessPackageRequestApprovalStageCallbackConfiguration The instance to serialize from.
67092
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67093
+ * @param writer Serialization writer to use to serialize this model
67094
+ */
67095
+ export declare function serializeAccessPackageRequestApprovalStageCallbackConfiguration(writer: SerializationWriter, accessPackageRequestApprovalStageCallbackConfiguration?: Partial<AccessPackageRequestApprovalStageCallbackConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
65826
67096
  /**
65827
67097
  * Serializes information the current object
65828
67098
  * @param AccessPackageResource The instance to serialize from.
@@ -66446,6 +67716,41 @@ export declare function serializeAirPrintSettings(writer: SerializationWriter, a
66446
67716
  * @param writer Serialization writer to use to serialize this model
66447
67717
  */
66448
67718
  export declare function serializeAiUser(writer: SerializationWriter, aiUser?: Partial<AiUser> | undefined | null, isSerializingDerivedType?: boolean): void;
67719
+ /**
67720
+ * Serializes information the current object
67721
+ * @param AkamaiAttackGroupActionModel The instance to serialize from.
67722
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67723
+ * @param writer Serialization writer to use to serialize this model
67724
+ */
67725
+ export declare function serializeAkamaiAttackGroupActionModel(writer: SerializationWriter, akamaiAttackGroupActionModel?: Partial<AkamaiAttackGroupActionModel> | undefined | null, isSerializingDerivedType?: boolean): void;
67726
+ /**
67727
+ * Serializes information the current object
67728
+ * @param AkamaiCustomRuleModel The instance to serialize from.
67729
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67730
+ * @param writer Serialization writer to use to serialize this model
67731
+ */
67732
+ export declare function serializeAkamaiCustomRuleModel(writer: SerializationWriter, akamaiCustomRuleModel?: Partial<AkamaiCustomRuleModel> | undefined | null, isSerializingDerivedType?: boolean): void;
67733
+ /**
67734
+ * Serializes information the current object
67735
+ * @param AkamaiRapidRulesModel The instance to serialize from.
67736
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67737
+ * @param writer Serialization writer to use to serialize this model
67738
+ */
67739
+ export declare function serializeAkamaiRapidRulesModel(writer: SerializationWriter, akamaiRapidRulesModel?: Partial<AkamaiRapidRulesModel> | undefined | null, isSerializingDerivedType?: boolean): void;
67740
+ /**
67741
+ * Serializes information the current object
67742
+ * @param AkamaiVerifiedDetailsModel The instance to serialize from.
67743
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67744
+ * @param writer Serialization writer to use to serialize this model
67745
+ */
67746
+ export declare function serializeAkamaiVerifiedDetailsModel(writer: SerializationWriter, akamaiVerifiedDetailsModel?: Partial<AkamaiVerifiedDetailsModel> | undefined | null, isSerializingDerivedType?: boolean): void;
67747
+ /**
67748
+ * Serializes information the current object
67749
+ * @param AkamaiWebApplicationFirewallProvider The instance to serialize from.
67750
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
67751
+ * @param writer Serialization writer to use to serialize this model
67752
+ */
67753
+ export declare function serializeAkamaiWebApplicationFirewallProvider(writer: SerializationWriter, akamaiWebApplicationFirewallProvider?: Partial<AkamaiWebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
66449
67754
  /**
66450
67755
  * Serializes information the current object
66451
67756
  * @param Album The instance to serialize from.
@@ -66992,6 +68297,13 @@ export declare function serializeAssignedTrainingInfo(writer: SerializationWrite
66992
68297
  * @param writer Serialization writer to use to serialize this model
66993
68298
  */
66994
68299
  export declare function serializeAssignmentOrder(writer: SerializationWriter, assignmentOrder?: Partial<AssignmentOrder> | undefined | null, isSerializingDerivedType?: boolean): void;
68300
+ /**
68301
+ * Serializes information the current object
68302
+ * @param AssignmentRequestApprovalStageCallbackData The instance to serialize from.
68303
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
68304
+ * @param writer Serialization writer to use to serialize this model
68305
+ */
68306
+ export declare function serializeAssignmentRequestApprovalStageCallbackData(writer: SerializationWriter, assignmentRequestApprovalStageCallbackData?: Partial<AssignmentRequestApprovalStageCallbackData> | undefined | null, isSerializingDerivedType?: boolean): void;
66995
68307
  /**
66996
68308
  * Serializes information the current object
66997
68309
  * @param AssociatedTeamInfo The instance to serialize from.
@@ -68700,6 +70012,34 @@ export declare function serializeCloudClipboardRoot(writer: SerializationWriter,
68700
70012
  * @param writer Serialization writer to use to serialize this model
68701
70013
  */
68702
70014
  export declare function serializeCloudCommunications(writer: SerializationWriter, cloudCommunications?: Partial<CloudCommunications> | undefined | null, isSerializingDerivedType?: boolean): void;
70015
+ /**
70016
+ * Serializes information the current object
70017
+ * @param CloudFlareRuleModel The instance to serialize from.
70018
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70019
+ * @param writer Serialization writer to use to serialize this model
70020
+ */
70021
+ export declare function serializeCloudFlareRuleModel(writer: SerializationWriter, cloudFlareRuleModel?: Partial<CloudFlareRuleModel> | undefined | null, isSerializingDerivedType?: boolean): void;
70022
+ /**
70023
+ * Serializes information the current object
70024
+ * @param CloudFlareRulesetModel The instance to serialize from.
70025
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70026
+ * @param writer Serialization writer to use to serialize this model
70027
+ */
70028
+ export declare function serializeCloudFlareRulesetModel(writer: SerializationWriter, cloudFlareRulesetModel?: Partial<CloudFlareRulesetModel> | undefined | null, isSerializingDerivedType?: boolean): void;
70029
+ /**
70030
+ * Serializes information the current object
70031
+ * @param CloudFlareVerifiedDetailsModel The instance to serialize from.
70032
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70033
+ * @param writer Serialization writer to use to serialize this model
70034
+ */
70035
+ export declare function serializeCloudFlareVerifiedDetailsModel(writer: SerializationWriter, cloudFlareVerifiedDetailsModel?: Partial<CloudFlareVerifiedDetailsModel> | undefined | null, isSerializingDerivedType?: boolean): void;
70036
+ /**
70037
+ * Serializes information the current object
70038
+ * @param CloudFlareWebApplicationFirewallProvider The instance to serialize from.
70039
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
70040
+ * @param writer Serialization writer to use to serialize this model
70041
+ */
70042
+ export declare function serializeCloudFlareWebApplicationFirewallProvider(writer: SerializationWriter, cloudFlareWebApplicationFirewallProvider?: Partial<CloudFlareWebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
68703
70043
  /**
68704
70044
  * Serializes information the current object
68705
70045
  * @param CloudPC The instance to serialize from.
@@ -71045,6 +72385,41 @@ export declare function serializeEdgeSearchEngineCustom(writer: SerializationWri
71045
72385
  * @param writer Serialization writer to use to serialize this model
71046
72386
  */
71047
72387
  export declare function serializeEditionUpgradeConfiguration(writer: SerializationWriter, editionUpgradeConfiguration?: Partial<EditionUpgradeConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
72388
+ /**
72389
+ * Serializes information the current object
72390
+ * @param EducationAiFeedbackAudienceEngagementSettings The instance to serialize from.
72391
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72392
+ * @param writer Serialization writer to use to serialize this model
72393
+ */
72394
+ export declare function serializeEducationAiFeedbackAudienceEngagementSettings(writer: SerializationWriter, educationAiFeedbackAudienceEngagementSettings?: Partial<EducationAiFeedbackAudienceEngagementSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72395
+ /**
72396
+ * Serializes information the current object
72397
+ * @param EducationAiFeedbackContentSettings The instance to serialize from.
72398
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72399
+ * @param writer Serialization writer to use to serialize this model
72400
+ */
72401
+ export declare function serializeEducationAiFeedbackContentSettings(writer: SerializationWriter, educationAiFeedbackContentSettings?: Partial<EducationAiFeedbackContentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72402
+ /**
72403
+ * Serializes information the current object
72404
+ * @param EducationAiFeedbackCriteria The instance to serialize from.
72405
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72406
+ * @param writer Serialization writer to use to serialize this model
72407
+ */
72408
+ export declare function serializeEducationAiFeedbackCriteria(writer: SerializationWriter, educationAiFeedbackCriteria?: Partial<EducationAiFeedbackCriteria> | undefined | null, isSerializingDerivedType?: boolean): void;
72409
+ /**
72410
+ * Serializes information the current object
72411
+ * @param EducationAiFeedbackDeliverySettings The instance to serialize from.
72412
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72413
+ * @param writer Serialization writer to use to serialize this model
72414
+ */
72415
+ export declare function serializeEducationAiFeedbackDeliverySettings(writer: SerializationWriter, educationAiFeedbackDeliverySettings?: Partial<EducationAiFeedbackDeliverySettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72416
+ /**
72417
+ * Serializes information the current object
72418
+ * @param EducationAiFeedbackSettings The instance to serialize from.
72419
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72420
+ * @param writer Serialization writer to use to serialize this model
72421
+ */
72422
+ export declare function serializeEducationAiFeedbackSettings(writer: SerializationWriter, educationAiFeedbackSettings?: Partial<EducationAiFeedbackSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
71048
72423
  /**
71049
72424
  * Serializes information the current object
71050
72425
  * @param EducationAssignment The instance to serialize from.
@@ -71241,6 +72616,27 @@ export declare function serializeEducationGradingCategory(writer: SerializationW
71241
72616
  * @param writer Serialization writer to use to serialize this model
71242
72617
  */
71243
72618
  export declare function serializeEducationGradingCategoryCollectionResponse(writer: SerializationWriter, educationGradingCategoryCollectionResponse?: Partial<EducationGradingCategoryCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
72619
+ /**
72620
+ * Serializes information the current object
72621
+ * @param EducationGradingScheme The instance to serialize from.
72622
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72623
+ * @param writer Serialization writer to use to serialize this model
72624
+ */
72625
+ export declare function serializeEducationGradingScheme(writer: SerializationWriter, educationGradingScheme?: Partial<EducationGradingScheme> | undefined | null, isSerializingDerivedType?: boolean): void;
72626
+ /**
72627
+ * Serializes information the current object
72628
+ * @param EducationGradingSchemeCollectionResponse The instance to serialize from.
72629
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72630
+ * @param writer Serialization writer to use to serialize this model
72631
+ */
72632
+ export declare function serializeEducationGradingSchemeCollectionResponse(writer: SerializationWriter, educationGradingSchemeCollectionResponse?: Partial<EducationGradingSchemeCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
72633
+ /**
72634
+ * Serializes information the current object
72635
+ * @param EducationGradingSchemeGrade The instance to serialize from.
72636
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72637
+ * @param writer Serialization writer to use to serialize this model
72638
+ */
72639
+ export declare function serializeEducationGradingSchemeGrade(writer: SerializationWriter, educationGradingSchemeGrade?: Partial<EducationGradingSchemeGrade> | undefined | null, isSerializingDerivedType?: boolean): void;
71244
72640
  /**
71245
72641
  * Serializes information the current object
71246
72642
  * @param EducationItemBody The instance to serialize from.
@@ -71388,6 +72784,41 @@ export declare function serializeEducationSchool(writer: SerializationWriter, ed
71388
72784
  * @param writer Serialization writer to use to serialize this model
71389
72785
  */
71390
72786
  export declare function serializeEducationSchoolCollectionResponse(writer: SerializationWriter, educationSchoolCollectionResponse?: Partial<EducationSchoolCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
72787
+ /**
72788
+ * Serializes information the current object
72789
+ * @param EducationSpeakerCoachAudienceEngagementSettings The instance to serialize from.
72790
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72791
+ * @param writer Serialization writer to use to serialize this model
72792
+ */
72793
+ export declare function serializeEducationSpeakerCoachAudienceEngagementSettings(writer: SerializationWriter, educationSpeakerCoachAudienceEngagementSettings?: Partial<EducationSpeakerCoachAudienceEngagementSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72794
+ /**
72795
+ * Serializes information the current object
72796
+ * @param EducationSpeakerCoachContentSettings The instance to serialize from.
72797
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72798
+ * @param writer Serialization writer to use to serialize this model
72799
+ */
72800
+ export declare function serializeEducationSpeakerCoachContentSettings(writer: SerializationWriter, educationSpeakerCoachContentSettings?: Partial<EducationSpeakerCoachContentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72801
+ /**
72802
+ * Serializes information the current object
72803
+ * @param EducationSpeakerCoachDeliverySettings The instance to serialize from.
72804
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72805
+ * @param writer Serialization writer to use to serialize this model
72806
+ */
72807
+ export declare function serializeEducationSpeakerCoachDeliverySettings(writer: SerializationWriter, educationSpeakerCoachDeliverySettings?: Partial<EducationSpeakerCoachDeliverySettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72808
+ /**
72809
+ * Serializes information the current object
72810
+ * @param EducationSpeakerCoachSettings The instance to serialize from.
72811
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72812
+ * @param writer Serialization writer to use to serialize this model
72813
+ */
72814
+ export declare function serializeEducationSpeakerCoachSettings(writer: SerializationWriter, educationSpeakerCoachSettings?: Partial<EducationSpeakerCoachSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72815
+ /**
72816
+ * Serializes information the current object
72817
+ * @param EducationSpeakerProgressResource The instance to serialize from.
72818
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72819
+ * @param writer Serialization writer to use to serialize this model
72820
+ */
72821
+ export declare function serializeEducationSpeakerProgressResource(writer: SerializationWriter, educationSpeakerProgressResource?: Partial<EducationSpeakerProgressResource> | undefined | null, isSerializingDerivedType?: boolean): void;
71391
72822
  /**
71392
72823
  * Serializes information the current object
71393
72824
  * @param EducationStudent The instance to serialize from.
@@ -71633,6 +73064,69 @@ export declare function serializeEngagementAsyncOperation(writer: SerializationW
71633
73064
  * @param writer Serialization writer to use to serialize this model
71634
73065
  */
71635
73066
  export declare function serializeEngagementAsyncOperationCollectionResponse(writer: SerializationWriter, engagementAsyncOperationCollectionResponse?: Partial<EngagementAsyncOperationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
73067
+ /**
73068
+ * Serializes information the current object
73069
+ * @param EngagementConversation The instance to serialize from.
73070
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73071
+ * @param writer Serialization writer to use to serialize this model
73072
+ */
73073
+ export declare function serializeEngagementConversation(writer: SerializationWriter, engagementConversation?: Partial<EngagementConversation> | undefined | null, isSerializingDerivedType?: boolean): void;
73074
+ /**
73075
+ * Serializes information the current object
73076
+ * @param EngagementConversationDiscussionMessage The instance to serialize from.
73077
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73078
+ * @param writer Serialization writer to use to serialize this model
73079
+ */
73080
+ export declare function serializeEngagementConversationDiscussionMessage(writer: SerializationWriter, engagementConversationDiscussionMessage?: Partial<EngagementConversationDiscussionMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
73081
+ /**
73082
+ * Serializes information the current object
73083
+ * @param EngagementConversationMessage The instance to serialize from.
73084
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73085
+ * @param writer Serialization writer to use to serialize this model
73086
+ */
73087
+ export declare function serializeEngagementConversationMessage(writer: SerializationWriter, engagementConversationMessage?: Partial<EngagementConversationMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
73088
+ /**
73089
+ * Serializes information the current object
73090
+ * @param EngagementConversationMessageCollectionResponse The instance to serialize from.
73091
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73092
+ * @param writer Serialization writer to use to serialize this model
73093
+ */
73094
+ export declare function serializeEngagementConversationMessageCollectionResponse(writer: SerializationWriter, engagementConversationMessageCollectionResponse?: Partial<EngagementConversationMessageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
73095
+ /**
73096
+ * Serializes information the current object
73097
+ * @param EngagementConversationMessageReaction The instance to serialize from.
73098
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73099
+ * @param writer Serialization writer to use to serialize this model
73100
+ */
73101
+ export declare function serializeEngagementConversationMessageReaction(writer: SerializationWriter, engagementConversationMessageReaction?: Partial<EngagementConversationMessageReaction> | undefined | null, isSerializingDerivedType?: boolean): void;
73102
+ /**
73103
+ * Serializes information the current object
73104
+ * @param EngagementConversationMessageReactionCollectionResponse The instance to serialize from.
73105
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73106
+ * @param writer Serialization writer to use to serialize this model
73107
+ */
73108
+ export declare function serializeEngagementConversationMessageReactionCollectionResponse(writer: SerializationWriter, engagementConversationMessageReactionCollectionResponse?: Partial<EngagementConversationMessageReactionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
73109
+ /**
73110
+ * Serializes information the current object
73111
+ * @param EngagementConversationQuestionMessage The instance to serialize from.
73112
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73113
+ * @param writer Serialization writer to use to serialize this model
73114
+ */
73115
+ export declare function serializeEngagementConversationQuestionMessage(writer: SerializationWriter, engagementConversationQuestionMessage?: Partial<EngagementConversationQuestionMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
73116
+ /**
73117
+ * Serializes information the current object
73118
+ * @param EngagementConversationSystemMessage The instance to serialize from.
73119
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73120
+ * @param writer Serialization writer to use to serialize this model
73121
+ */
73122
+ export declare function serializeEngagementConversationSystemMessage(writer: SerializationWriter, engagementConversationSystemMessage?: Partial<EngagementConversationSystemMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
73123
+ /**
73124
+ * Serializes information the current object
73125
+ * @param EngagementIdentitySet The instance to serialize from.
73126
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
73127
+ * @param writer Serialization writer to use to serialize this model
73128
+ */
73129
+ export declare function serializeEngagementIdentitySet(writer: SerializationWriter, engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined | null, isSerializingDerivedType?: boolean): void;
71636
73130
  /**
71637
73131
  * Serializes information the current object
71638
73132
  * @param EnrollmentConfigurationAssignment The instance to serialize from.
@@ -72760,13 +74254,6 @@ export declare function serializeIosCompliancePolicy(writer: SerializationWriter
72760
74254
  * @param writer Serialization writer to use to serialize this model
72761
74255
  */
72762
74256
  export declare function serializeIosCustomConfiguration(writer: SerializationWriter, iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
72763
- /**
72764
- * Serializes information the current object
72765
- * @param IosDdmLobAppAssignmentSettings The instance to serialize from.
72766
- * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
72767
- * @param writer Serialization writer to use to serialize this model
72768
- */
72769
- export declare function serializeIosDdmLobAppAssignmentSettings(writer: SerializationWriter, iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
72770
74257
  /**
72771
74258
  * Serializes information the current object
72772
74259
  * @param IosDeviceFeaturesConfiguration The instance to serialize from.
@@ -75126,6 +76613,20 @@ export declare function serializeOnlineMeetingBase(writer: SerializationWriter,
75126
76613
  * @param writer Serialization writer to use to serialize this model
75127
76614
  */
75128
76615
  export declare function serializeOnlineMeetingCollectionResponse(writer: SerializationWriter, onlineMeetingCollectionResponse?: Partial<OnlineMeetingCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
76616
+ /**
76617
+ * Serializes information the current object
76618
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76619
+ * @param OnlineMeetingEngagementConversation The instance to serialize from.
76620
+ * @param writer Serialization writer to use to serialize this model
76621
+ */
76622
+ export declare function serializeOnlineMeetingEngagementConversation(writer: SerializationWriter, onlineMeetingEngagementConversation?: Partial<OnlineMeetingEngagementConversation> | undefined | null, isSerializingDerivedType?: boolean): void;
76623
+ /**
76624
+ * Serializes information the current object
76625
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76626
+ * @param OnlineMeetingEngagementConversationCollectionResponse The instance to serialize from.
76627
+ * @param writer Serialization writer to use to serialize this model
76628
+ */
76629
+ export declare function serializeOnlineMeetingEngagementConversationCollectionResponse(writer: SerializationWriter, onlineMeetingEngagementConversationCollectionResponse?: Partial<OnlineMeetingEngagementConversationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
75129
76630
  /**
75130
76631
  * Serializes information the current object
75131
76632
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -75217,6 +76718,13 @@ export declare function serializeOnPremisesExtensionAttributes(writer: Serializa
75217
76718
  * @param writer Serialization writer to use to serialize this model
75218
76719
  */
75219
76720
  export declare function serializeOnPremisesProvisioningError(writer: SerializationWriter, onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined | null, isSerializingDerivedType?: boolean): void;
76721
+ /**
76722
+ * Serializes information the current object
76723
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
76724
+ * @param OnPremisesSyncBehavior The instance to serialize from.
76725
+ * @param writer Serialization writer to use to serialize this model
76726
+ */
76727
+ export declare function serializeOnPremisesSyncBehavior(writer: SerializationWriter, onPremisesSyncBehavior?: Partial<OnPremisesSyncBehavior> | undefined | null, isSerializingDerivedType?: boolean): void;
75220
76728
  /**
75221
76729
  * Serializes information the current object
75222
76730
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -76883,6 +78391,20 @@ export declare function serializeReadingAssignmentSubmission(writer: Serializati
76883
78391
  * @param writer Serialization writer to use to serialize this model
76884
78392
  */
76885
78393
  export declare function serializeReadingAssignmentSubmissionCollectionResponse(writer: SerializationWriter, readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
78394
+ /**
78395
+ * Serializes information the current object
78396
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
78397
+ * @param ReadingCoachPassage The instance to serialize from.
78398
+ * @param writer Serialization writer to use to serialize this model
78399
+ */
78400
+ export declare function serializeReadingCoachPassage(writer: SerializationWriter, readingCoachPassage?: Partial<ReadingCoachPassage> | undefined | null, isSerializingDerivedType?: boolean): void;
78401
+ /**
78402
+ * Serializes information the current object
78403
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
78404
+ * @param ReadingCoachPassageCollectionResponse The instance to serialize from.
78405
+ * @param writer Serialization writer to use to serialize this model
78406
+ */
78407
+ export declare function serializeReadingCoachPassageCollectionResponse(writer: SerializationWriter, readingCoachPassageCollectionResponse?: Partial<ReadingCoachPassageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
76886
78408
  /**
76887
78409
  * Serializes information the current object
76888
78410
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -77387,6 +78909,13 @@ export declare function serializeRiskDetection(writer: SerializationWriter, risk
77387
78909
  * @param writer Serialization writer to use to serialize this model
77388
78910
  */
77389
78911
  export declare function serializeRiskDetectionCollectionResponse(writer: SerializationWriter, riskDetectionCollectionResponse?: Partial<RiskDetectionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
78912
+ /**
78913
+ * Serializes information the current object
78914
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
78915
+ * @param RiskPreventionContainer The instance to serialize from.
78916
+ * @param writer Serialization writer to use to serialize this model
78917
+ */
78918
+ export declare function serializeRiskPreventionContainer(writer: SerializationWriter, riskPreventionContainer?: Partial<RiskPreventionContainer> | undefined | null, isSerializingDerivedType?: boolean): void;
77390
78919
  /**
77391
78920
  * Serializes information the current object
77392
78921
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -78717,6 +80246,20 @@ export declare function serializeSortProperty(writer: SerializationWriter, sortP
78717
80246
  * @param writer Serialization writer to use to serialize this model
78718
80247
  */
78719
80248
  export declare function serializeSpaApplication(writer: SerializationWriter, spaApplication?: Partial<SpaApplication> | undefined | null, isSerializingDerivedType?: boolean): void;
80249
+ /**
80250
+ * Serializes information the current object
80251
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
80252
+ * @param SpeakerAssignmentSubmission The instance to serialize from.
80253
+ * @param writer Serialization writer to use to serialize this model
80254
+ */
80255
+ export declare function serializeSpeakerAssignmentSubmission(writer: SerializationWriter, speakerAssignmentSubmission?: Partial<SpeakerAssignmentSubmission> | undefined | null, isSerializingDerivedType?: boolean): void;
80256
+ /**
80257
+ * Serializes information the current object
80258
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
80259
+ * @param SpeakerAssignmentSubmissionCollectionResponse The instance to serialize from.
80260
+ * @param writer Serialization writer to use to serialize this model
80261
+ */
80262
+ export declare function serializeSpeakerAssignmentSubmissionCollectionResponse(writer: SerializationWriter, speakerAssignmentSubmissionCollectionResponse?: Partial<SpeakerAssignmentSubmissionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
78720
80263
  /**
78721
80264
  * Serializes information the current object
78722
80265
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -79550,20 +81093,6 @@ export declare function serializeTeamworkTagMemberCollectionResponse(writer: Ser
79550
81093
  * @param writer Serialization writer to use to serialize this model
79551
81094
  */
79552
81095
  export declare function serializeTeamworkUserIdentity(writer: SerializationWriter, teamworkUserIdentity?: Partial<TeamworkUserIdentity> | undefined | null, isSerializingDerivedType?: boolean): void;
79553
- /**
79554
- * Serializes information the current object
79555
- * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79556
- * @param TelecomExpenseManagementPartner The instance to serialize from.
79557
- * @param writer Serialization writer to use to serialize this model
79558
- */
79559
- export declare function serializeTelecomExpenseManagementPartner(writer: SerializationWriter, telecomExpenseManagementPartner?: Partial<TelecomExpenseManagementPartner> | undefined | null, isSerializingDerivedType?: boolean): void;
79560
- /**
79561
- * Serializes information the current object
79562
- * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
79563
- * @param TelecomExpenseManagementPartnerCollectionResponse The instance to serialize from.
79564
- * @param writer Serialization writer to use to serialize this model
79565
- */
79566
- export declare function serializeTelecomExpenseManagementPartnerCollectionResponse(writer: SerializationWriter, telecomExpenseManagementPartnerCollectionResponse?: Partial<TelecomExpenseManagementPartnerCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
79567
81096
  /**
79568
81097
  * Serializes information the current object
79569
81098
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -81384,6 +82913,55 @@ export declare function serializeWebApp(writer: SerializationWriter, webApp?: Pa
81384
82913
  * @param writer Serialization writer to use to serialize this model
81385
82914
  */
81386
82915
  export declare function serializeWebApplication(writer: SerializationWriter, webApplication?: Partial<WebApplication> | undefined | null, isSerializingDerivedType?: boolean): void;
82916
+ /**
82917
+ * Serializes information the current object
82918
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82919
+ * @param WebApplicationFirewallDnsConfiguration The instance to serialize from.
82920
+ * @param writer Serialization writer to use to serialize this model
82921
+ */
82922
+ export declare function serializeWebApplicationFirewallDnsConfiguration(writer: SerializationWriter, webApplicationFirewallDnsConfiguration?: Partial<WebApplicationFirewallDnsConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
82923
+ /**
82924
+ * Serializes information the current object
82925
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82926
+ * @param WebApplicationFirewallProvider The instance to serialize from.
82927
+ * @param writer Serialization writer to use to serialize this model
82928
+ */
82929
+ export declare function serializeWebApplicationFirewallProvider(writer: SerializationWriter, webApplicationFirewallProvider?: Partial<WebApplicationFirewallProvider> | undefined | null, isSerializingDerivedType?: boolean): void;
82930
+ /**
82931
+ * Serializes information the current object
82932
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82933
+ * @param WebApplicationFirewallProviderCollectionResponse The instance to serialize from.
82934
+ * @param writer Serialization writer to use to serialize this model
82935
+ */
82936
+ export declare function serializeWebApplicationFirewallProviderCollectionResponse(writer: SerializationWriter, webApplicationFirewallProviderCollectionResponse?: Partial<WebApplicationFirewallProviderCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
82937
+ /**
82938
+ * Serializes information the current object
82939
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82940
+ * @param WebApplicationFirewallVerificationModel The instance to serialize from.
82941
+ * @param writer Serialization writer to use to serialize this model
82942
+ */
82943
+ export declare function serializeWebApplicationFirewallVerificationModel(writer: SerializationWriter, webApplicationFirewallVerificationModel?: Partial<WebApplicationFirewallVerificationModel> | undefined | null, isSerializingDerivedType?: boolean): void;
82944
+ /**
82945
+ * Serializes information the current object
82946
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82947
+ * @param WebApplicationFirewallVerificationModelCollectionResponse The instance to serialize from.
82948
+ * @param writer Serialization writer to use to serialize this model
82949
+ */
82950
+ export declare function serializeWebApplicationFirewallVerificationModelCollectionResponse(writer: SerializationWriter, webApplicationFirewallVerificationModelCollectionResponse?: Partial<WebApplicationFirewallVerificationModelCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
82951
+ /**
82952
+ * Serializes information the current object
82953
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82954
+ * @param WebApplicationFirewallVerificationResult The instance to serialize from.
82955
+ * @param writer Serialization writer to use to serialize this model
82956
+ */
82957
+ export declare function serializeWebApplicationFirewallVerificationResult(writer: SerializationWriter, webApplicationFirewallVerificationResult?: Partial<WebApplicationFirewallVerificationResult> | undefined | null, isSerializingDerivedType?: boolean): void;
82958
+ /**
82959
+ * Serializes information the current object
82960
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
82961
+ * @param WebApplicationFirewallVerifiedDetails The instance to serialize from.
82962
+ * @param writer Serialization writer to use to serialize this model
82963
+ */
82964
+ export declare function serializeWebApplicationFirewallVerifiedDetails(writer: SerializationWriter, webApplicationFirewallVerifiedDetails?: Partial<WebApplicationFirewallVerifiedDetails> | undefined | null, isSerializingDerivedType?: boolean): void;
81387
82965
  /**
81388
82966
  * Serializes information the current object
81389
82967
  * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
@@ -83319,11 +84897,11 @@ export interface SettingSource extends AdditionalDataHolder, BackedModel, Parsab
83319
84897
  */
83320
84898
  backingStoreEnabled?: boolean | null;
83321
84899
  /**
83322
- * Not yet documented
84900
+ * The displayName property
83323
84901
  */
83324
84902
  displayName?: string | null;
83325
84903
  /**
83326
- * Not yet documented
84904
+ * The id property
83327
84905
  */
83328
84906
  id?: string | null;
83329
84907
  /**
@@ -85108,6 +86686,90 @@ export interface SpaApplication extends AdditionalDataHolder, BackedModel, Parsa
85108
86686
  */
85109
86687
  redirectUris?: string[] | null;
85110
86688
  }
86689
+ export interface SpeakerAssignmentSubmission extends Entity, Parsable {
86690
+ /**
86691
+ * ID of the assignment with which this submission is associated.
86692
+ */
86693
+ assignmentId?: string | null;
86694
+ /**
86695
+ * The average speaking pace of the student, measured in words per minute.
86696
+ */
86697
+ averageWordsPerMinutePace?: number | null;
86698
+ /**
86699
+ * ID of the class this speaker progress is associated with.
86700
+ */
86701
+ classId?: string | null;
86702
+ /**
86703
+ * The number of times the student was flagged by Speaker Coach for using a filler word.
86704
+ */
86705
+ fillerWordsOccurrencesCount?: number | null;
86706
+ /**
86707
+ * The number of times the student was flagged by Speaker Coach for being either too close or too far away from the camera.
86708
+ */
86709
+ incorrectCameraDistanceOccurrencesCount?: number | null;
86710
+ /**
86711
+ * The length of the student submission in seconds.
86712
+ */
86713
+ lengthOfSubmissionInSeconds?: number | null;
86714
+ /**
86715
+ * The number of times the student was flagged by Speaker Coach for losing eye contact with the camera.
86716
+ */
86717
+ lostEyeContactOccurrencesCount?: number | null;
86718
+ /**
86719
+ * The number of times the student was flagged by Speaker Coach for speaking in monotone.
86720
+ */
86721
+ monotoneOccurrencesCount?: number | null;
86722
+ /**
86723
+ * The number of times the student was flagged by Speaker Coach for using non-inclusive or sensitive language.
86724
+ */
86725
+ nonInclusiveLanguageOccurrencesCount?: number | null;
86726
+ /**
86727
+ * The number of times the student was flagged by Speaker Coach for obstructing the view of their face.
86728
+ */
86729
+ obstructedViewOccurrencesCount?: number | null;
86730
+ /**
86731
+ * The number of times the student was flagged by Speaker Coach for using repetitive language.
86732
+ */
86733
+ repetitiveLanguageOccurrencesCount?: number | null;
86734
+ /**
86735
+ * ID of the user this speaker progress is associated with.
86736
+ */
86737
+ studentId?: string | null;
86738
+ /**
86739
+ * Date and time of the submission this speaker progress is associated with. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
86740
+ */
86741
+ submissionDateTime?: Date | null;
86742
+ /**
86743
+ * ID of the submission this speaker progress is associated with.
86744
+ */
86745
+ submissionId?: string | null;
86746
+ /**
86747
+ * The filler words used most by the student.
86748
+ */
86749
+ topFillerWords?: string[] | null;
86750
+ /**
86751
+ * The words mispronounced most by the student.
86752
+ */
86753
+ topMispronouncedWords?: string[] | null;
86754
+ /**
86755
+ * The non-inclusive or sensitive words and phrases most used by the student.
86756
+ */
86757
+ topNonInclusiveWordsAndPhrases?: string[] | null;
86758
+ /**
86759
+ * The words and phrases most repeated by the student.
86760
+ */
86761
+ topRepetitiveWordsAndPhrases?: string[] | null;
86762
+ /**
86763
+ * Total number of words spoken by the student in the submission.
86764
+ */
86765
+ wordsSpokenCount?: number | null;
86766
+ }
86767
+ export interface SpeakerAssignmentSubmissionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
86768
+ /**
86769
+ * The value property
86770
+ */
86771
+ value?: SpeakerAssignmentSubmission[] | null;
86772
+ }
85111
86773
  export interface SpecialFolder extends AdditionalDataHolder, BackedModel, Parsable {
85112
86774
  /**
85113
86775
  * Stores model information.
@@ -87188,37 +88850,6 @@ export interface TeamworkUserIdentity extends Identity, Parsable {
87188
88850
  userIdentityType?: TeamworkUserIdentityType | null;
87189
88851
  }
87190
88852
  export type TeamworkUserIdentityType = (typeof TeamworkUserIdentityTypeObject)[keyof typeof TeamworkUserIdentityTypeObject];
87191
- /**
87192
- * telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off.
87193
- */
87194
- export interface TelecomExpenseManagementPartner extends Entity, Parsable {
87195
- /**
87196
- * Whether the partner's AAD app has been authorized to access Intune.
87197
- */
87198
- appAuthorized?: boolean | null;
87199
- /**
87200
- * Display name of the TEM partner.
87201
- */
87202
- displayName?: string | null;
87203
- /**
87204
- * Whether Intune's connection to the TEM service is currently enabled or disabled.
87205
- */
87206
- enabled?: boolean | null;
87207
- /**
87208
- * Timestamp of the last request sent to Intune by the TEM partner.
87209
- */
87210
- lastConnectionDateTime?: Date | null;
87211
- /**
87212
- * URL of the TEM partner's administrative control panel, where an administrator can configure their TEM service.
87213
- */
87214
- url?: string | null;
87215
- }
87216
- export interface TelecomExpenseManagementPartnerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
87217
- /**
87218
- * The value property
87219
- */
87220
- value?: TelecomExpenseManagementPartner[] | null;
87221
- }
87222
88853
  export interface TeleconferenceDeviceAudioQuality extends Parsable, TeleconferenceDeviceMediaQuality {
87223
88854
  }
87224
88855
  export interface TeleconferenceDeviceMediaQuality extends AdditionalDataHolder, BackedModel, Parsable {
@@ -89346,19 +90977,19 @@ export interface UpdateWindowsDeviceAccountActionParameter extends AdditionalDat
89346
90977
  */
89347
90978
  backingStoreEnabled?: boolean | null;
89348
90979
  /**
89349
- * Not yet documented
90980
+ * The calendarSyncEnabled property
89350
90981
  */
89351
90982
  calendarSyncEnabled?: boolean | null;
89352
90983
  /**
89353
- * Not yet documented
90984
+ * The deviceAccount property
89354
90985
  */
89355
90986
  deviceAccount?: WindowsDeviceAccount | null;
89356
90987
  /**
89357
- * Not yet documented
90988
+ * The deviceAccountEmail property
89358
90989
  */
89359
90990
  deviceAccountEmail?: string | null;
89360
90991
  /**
89361
- * Not yet documented
90992
+ * The exchangeServer property
89362
90993
  */
89363
90994
  exchangeServer?: string | null;
89364
90995
  /**
@@ -89366,11 +90997,11 @@ export interface UpdateWindowsDeviceAccountActionParameter extends AdditionalDat
89366
90997
  */
89367
90998
  odataType?: string | null;
89368
90999
  /**
89369
- * Not yet documented
91000
+ * The passwordRotationEnabled property
89370
91001
  */
89371
91002
  passwordRotationEnabled?: boolean | null;
89372
91003
  /**
89373
- * Not yet documented
91004
+ * The sessionInitiationProtocalAddress property
89374
91005
  */
89375
91006
  sessionInitiationProtocalAddress?: string | null;
89376
91007
  }
@@ -89573,6 +91204,10 @@ export interface User extends DirectoryObject, Parsable {
89573
91204
  * The cloudClipboard property
89574
91205
  */
89575
91206
  cloudClipboard?: CloudClipboardRoot | null;
91207
+ /**
91208
+ * The user's Cloud PCs. Read-only. Nullable.
91209
+ */
91210
+ cloudPCs?: CloudPC[] | null;
89576
91211
  /**
89577
91212
  * The name of the company that the user is associated with. This property can be useful for describing the company that a guest comes from. The maximum length is 64 characters.Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
89578
91213
  */
@@ -92628,7 +94263,7 @@ export interface VppLicensingType extends AdditionalDataHolder, BackedModel, Par
92628
94263
  */
92629
94264
  export interface VppToken extends Entity, Parsable {
92630
94265
  /**
92631
- * The Apple ID associated with the given Apple Volume Purchase Program Token.
94266
+ * The apple Id associated with the given Apple Volume Purchase Program Token.
92632
94267
  */
92633
94268
  appleId?: string | null;
92634
94269
  /**
@@ -92636,7 +94271,7 @@ export interface VppToken extends Entity, Parsable {
92636
94271
  */
92637
94272
  automaticallyUpdateApps?: boolean | null;
92638
94273
  /**
92639
- * The country or region associated with the Apple Volume Purchase Program Token.
94274
+ * Whether or not apps for the VPP token will be automatically updated.
92640
94275
  */
92641
94276
  countryOrRegion?: string | null;
92642
94277
  /**
@@ -92765,6 +94400,119 @@ export interface WebApplication extends AdditionalDataHolder, BackedModel, Parsa
92765
94400
  */
92766
94401
  redirectUriSettings?: RedirectUriSettings[] | null;
92767
94402
  }
94403
+ export interface WebApplicationFirewallDnsConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
94404
+ /**
94405
+ * Stores model information.
94406
+ */
94407
+ backingStoreEnabled?: boolean | null;
94408
+ /**
94409
+ * The isDomainVerified property
94410
+ */
94411
+ isDomainVerified?: boolean | null;
94412
+ /**
94413
+ * The isProxied property
94414
+ */
94415
+ isProxied?: boolean | null;
94416
+ /**
94417
+ * The name property
94418
+ */
94419
+ name?: string | null;
94420
+ /**
94421
+ * The OdataType property
94422
+ */
94423
+ odataType?: string | null;
94424
+ /**
94425
+ * The recordType property
94426
+ */
94427
+ recordType?: WebApplicationFirewallDnsRecordType | null;
94428
+ /**
94429
+ * The value property
94430
+ */
94431
+ value?: string | null;
94432
+ }
94433
+ export type WebApplicationFirewallDnsRecordType = (typeof WebApplicationFirewallDnsRecordTypeObject)[keyof typeof WebApplicationFirewallDnsRecordTypeObject];
94434
+ export interface WebApplicationFirewallProvider extends Entity, Parsable {
94435
+ /**
94436
+ * The displayName property
94437
+ */
94438
+ displayName?: string | null;
94439
+ }
94440
+ export interface WebApplicationFirewallProviderCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
94441
+ /**
94442
+ * The value property
94443
+ */
94444
+ value?: WebApplicationFirewallProvider[] | null;
94445
+ }
94446
+ export type WebApplicationFirewallProviderType = (typeof WebApplicationFirewallProviderTypeObject)[keyof typeof WebApplicationFirewallProviderTypeObject];
94447
+ export interface WebApplicationFirewallVerificationModel extends Entity, Parsable {
94448
+ /**
94449
+ * The provider property
94450
+ */
94451
+ provider?: WebApplicationFirewallProvider | null;
94452
+ /**
94453
+ * The providerType property
94454
+ */
94455
+ providerType?: WebApplicationFirewallProviderType | null;
94456
+ /**
94457
+ * The verificationResult property
94458
+ */
94459
+ verificationResult?: WebApplicationFirewallVerificationResult | null;
94460
+ /**
94461
+ * The verifiedDetails property
94462
+ */
94463
+ verifiedDetails?: WebApplicationFirewallVerifiedDetails | null;
94464
+ /**
94465
+ * The verifiedHost property
94466
+ */
94467
+ verifiedHost?: string | null;
94468
+ }
94469
+ export interface WebApplicationFirewallVerificationModelCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
94470
+ /**
94471
+ * The value property
94472
+ */
94473
+ value?: WebApplicationFirewallVerificationModel[] | null;
94474
+ }
94475
+ export interface WebApplicationFirewallVerificationResult extends AdditionalDataHolder, BackedModel, Parsable {
94476
+ /**
94477
+ * Stores model information.
94478
+ */
94479
+ backingStoreEnabled?: boolean | null;
94480
+ /**
94481
+ * The errors property
94482
+ */
94483
+ errors?: GenericError[] | null;
94484
+ /**
94485
+ * The OdataType property
94486
+ */
94487
+ odataType?: string | null;
94488
+ /**
94489
+ * The status property
94490
+ */
94491
+ status?: WebApplicationFirewallVerificationStatus | null;
94492
+ /**
94493
+ * The verifiedOnDateTime property
94494
+ */
94495
+ verifiedOnDateTime?: Date | null;
94496
+ /**
94497
+ * The warnings property
94498
+ */
94499
+ warnings?: GenericError[] | null;
94500
+ }
94501
+ export type WebApplicationFirewallVerificationStatus = (typeof WebApplicationFirewallVerificationStatusObject)[keyof typeof WebApplicationFirewallVerificationStatusObject];
94502
+ export interface WebApplicationFirewallVerifiedDetails extends AdditionalDataHolder, BackedModel, Parsable {
94503
+ /**
94504
+ * Stores model information.
94505
+ */
94506
+ backingStoreEnabled?: boolean | null;
94507
+ /**
94508
+ * The dnsConfiguration property
94509
+ */
94510
+ dnsConfiguration?: WebApplicationFirewallDnsConfiguration | null;
94511
+ /**
94512
+ * The OdataType property
94513
+ */
94514
+ odataType?: string | null;
94515
+ }
92768
94516
  export type WebBrowserCookieSettings = (typeof WebBrowserCookieSettingsObject)[keyof typeof WebBrowserCookieSettingsObject];
92769
94517
  export interface WebPart extends Entity, Parsable {
92770
94518
  }
@@ -92873,7 +94621,7 @@ export interface WhatIfAnalysisResult extends ConditionalAccessPolicy, Parsable
92873
94621
  */
92874
94622
  export interface Win32LobApp extends MobileLobApp, Parsable {
92875
94623
  /**
92876
- * Indicates the Windows architecture(s) this app should be installed on. The app will be treated as not applicable for devices with architectures not matching the selected value. When a non-null value is provided for the `allowedArchitectures` property, the value of the `applicableArchitectures` property is set to `none`. Possible values are: `null`, `x86`, `x64`, `arm64`.
94624
+ * Indicates the Windows architecture(s) this app should be installed on. The app will be treated as not applicable for devices with architectures not matching the selected value. When a non-null value is provided for the allowedArchitectures property, the value of the applicableArchitectures property is set to none. Possible values are: null, x86, x64, arm64. Possible values are: none, x86, x64, arm, neutral.
92877
94625
  */
92878
94626
  allowedArchitectures?: WindowsArchitecture[] | null;
92879
94627
  /**
@@ -92881,51 +94629,51 @@ export interface Win32LobApp extends MobileLobApp, Parsable {
92881
94629
  */
92882
94630
  applicableArchitectures?: WindowsArchitecture[] | null;
92883
94631
  /**
92884
- * The command line to install this app
94632
+ * Indicates the command line to install this app. Used to install the Win32 app. Example: msiexec /i 'Orca.Msi' /qn.
92885
94633
  */
92886
94634
  installCommandLine?: string | null;
92887
94635
  /**
92888
- * The install experience for this app.
94636
+ * Indicates the install experience for this app.
92889
94637
  */
92890
94638
  installExperience?: Win32LobAppInstallExperience | null;
92891
94639
  /**
92892
- * The value for the minimum CPU speed which is required to install this app.
94640
+ * Indicates the value for the minimum CPU speed which is required to install this app. Allowed range from 0 to clock speed from WMI helper.
92893
94641
  */
92894
94642
  minimumCpuSpeedInMHz?: number | null;
92895
94643
  /**
92896
- * The value for the minimum free disk space which is required to install this app.
94644
+ * Indicates the value for the minimum free disk space which is required to install this app. Allowed range from 0 to driver's maximum available free space.
92897
94645
  */
92898
94646
  minimumFreeDiskSpaceInMB?: number | null;
92899
94647
  /**
92900
- * The value for the minimum physical memory which is required to install this app.
94648
+ * Indicates the value for the minimum physical memory which is required to install this app. Allowed range from 0 to total physical memory from WMI helper.
92901
94649
  */
92902
94650
  minimumMemoryInMB?: number | null;
92903
94651
  /**
92904
- * The value for the minimum number of processors which is required to install this app.
94652
+ * Indicates the value for the minimum number of processors which is required to install this app. Minimum value is 0.
92905
94653
  */
92906
94654
  minimumNumberOfProcessors?: number | null;
92907
94655
  /**
92908
- * The value for the minimum supported windows release.
94656
+ * Indicates the value for the minimum supported windows release. Example: Windows11_23H2.
92909
94657
  */
92910
94658
  minimumSupportedWindowsRelease?: string | null;
92911
94659
  /**
92912
- * The MSI details if this Win32 app is an MSI app.
94660
+ * Indicates the MSI details if this Win32 app is an MSI app.
92913
94661
  */
92914
94662
  msiInformation?: Win32LobAppMsiInformation | null;
92915
94663
  /**
92916
- * The return codes for post installation behavior.
94664
+ * Indicates the return codes for post installation behavior.
92917
94665
  */
92918
94666
  returnCodes?: Win32LobAppReturnCode[] | null;
92919
94667
  /**
92920
- * The detection and requirement rules for this app.
94668
+ * Indicates the detection and requirement rules for this app. Possible values are: Win32LobAppFileSystemRule, Win32LobAppPowerShellScriptRule, Win32LobAppProductCodeRule, Win32LobAppRegistryRule.
92921
94669
  */
92922
94670
  rules?: Win32LobAppRule[] | null;
92923
94671
  /**
92924
- * The relative path of the setup file in the encrypted Win32LobApp package.
94672
+ * Indicates the relative path of the setup file in the encrypted Win32LobApp package. Example: Intel-SA-00075 Detection and Mitigation Tool.msi.
92925
94673
  */
92926
94674
  setupFilePath?: string | null;
92927
94675
  /**
92928
- * The command line to uninstall this app
94676
+ * Indicates the command line to uninstall this app. Used to uninstall the app. Example: msiexec /x '{85F4CBCB-9BBC-4B50-A7D8-E1106771498D}' /qn.
92929
94677
  */
92930
94678
  uninstallCommandLine?: string | null;
92931
94679
  }
@@ -94903,23 +96651,23 @@ export interface WindowsDeviceAccount extends AdditionalDataHolder, BackedModel,
94903
96651
  */
94904
96652
  odataType?: string | null;
94905
96653
  /**
94906
- * Not yet documented
96654
+ * The password property
94907
96655
  */
94908
96656
  password?: string | null;
94909
96657
  }
94910
96658
  export interface WindowsDeviceADAccount extends Parsable, WindowsDeviceAccount {
94911
96659
  /**
94912
- * Not yet documented
96660
+ * The domainName property
94913
96661
  */
94914
96662
  domainName?: string | null;
94915
96663
  /**
94916
- * Not yet documented
96664
+ * The userName property
94917
96665
  */
94918
96666
  userName?: string | null;
94919
96667
  }
94920
96668
  export interface WindowsDeviceAzureADAccount extends Parsable, WindowsDeviceAccount {
94921
96669
  /**
94922
- * Not yet documented
96670
+ * The userPrincipalName property
94923
96671
  */
94924
96672
  userPrincipalName?: string | null;
94925
96673
  }
@@ -95344,7 +97092,7 @@ export type WindowsInformationProtectionPinCharacterRequirements = (typeof Windo
95344
97092
  */
95345
97093
  export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInformationProtection {
95346
97094
  /**
95347
- * Offline interval before app data is wiped (days)
97095
+ * Offline interval before app data is wiped (days) . Valid values 0 to 999
95348
97096
  */
95349
97097
  daysWithoutContactBeforeUnenroll?: number | null;
95350
97098
  /**
@@ -95352,19 +97100,19 @@ export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInf
95352
97100
  */
95353
97101
  mdmEnrollmentUrl?: string | null;
95354
97102
  /**
95355
- * Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Range is an integer X where 0 <= X <= 999.
97103
+ * Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Range is an integer X where 0 <= X <= 999. Valid values 0 to 999
95356
97104
  */
95357
97105
  minutesOfInactivityBeforeDeviceLock?: number | null;
95358
97106
  /**
95359
- * Integer value that specifies the number of past PINs that can be associated to a user account that can't be reused. The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required. This node was added in Windows 10, version 1511. Default is 0.
97107
+ * Integer value that specifies the number of past PINs that can be associated to a user account that can't be reused. The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required. This node was added in Windows 10, version 1511. Default is 0. Valid values 0 to 50
95360
97108
  */
95361
97109
  numberOfPastPinsRemembered?: number | null;
95362
97110
  /**
95363
- * The number of authentication failures allowed before the device will be wiped. A value of 0 disables device wipe functionality. Range is an integer X where 4 <= X <= 16 for desktop and 0 <= X <= 999 for mobile devices.
97111
+ * The number of authentication failures allowed before the device will be wiped. A value of 0 disables device wipe functionality. Range is an integer X where 4 <= X <= 16 for desktop and 0 <= X <= 999 for mobile devices. Valid values 0 to 999
95364
97112
  */
95365
97113
  passwordMaximumAttemptCount?: number | null;
95366
97114
  /**
95367
- * Integer value specifies the period of time (in days) that a PIN can be used before the system requires the user to change it. The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user's PIN will never expire. This node was added in Windows 10, version 1511. Default is 0.
97115
+ * Integer value specifies the period of time (in days) that a PIN can be used before the system requires the user to change it. The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user's PIN will never expire. This node was added in Windows 10, version 1511. Default is 0. Valid values 0 to 730
95368
97116
  */
95369
97117
  pinExpirationDays?: number | null;
95370
97118
  /**
@@ -95372,7 +97120,7 @@ export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInf
95372
97120
  */
95373
97121
  pinLowercaseLetters?: WindowsInformationProtectionPinCharacterRequirements | null;
95374
97122
  /**
95375
- * Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.
97123
+ * Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest. Valid values 0 to 127
95376
97124
  */
95377
97125
  pinMinimumLength?: number | null;
95378
97126
  /**
@@ -96081,27 +97829,27 @@ export interface WindowsUniversalAppX extends MobileLobApp, Parsable {
96081
97829
  */
96082
97830
  applicableDeviceTypes?: WindowsDeviceType[] | null;
96083
97831
  /**
96084
- * The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app.
97832
+ * The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app. This property is read-only.
96085
97833
  */
96086
97834
  committedContainedApps?: MobileContainedApp[] | null;
96087
97835
  /**
96088
- * The Identity Name.
97836
+ * The Identity Name of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'Contoso.DemoApp'.
96089
97837
  */
96090
97838
  identityName?: string | null;
96091
97839
  /**
96092
- * The Identity Publisher Hash.
97840
+ * The Identity Publisher Hash of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'AB82CD0XYZ'.
96093
97841
  */
96094
97842
  identityPublisherHash?: string | null;
96095
97843
  /**
96096
- * The Identity Resource Identifier.
97844
+ * The Identity Resource Identifier of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'TestResourceId'.
96097
97845
  */
96098
97846
  identityResourceIdentifier?: string | null;
96099
97847
  /**
96100
- * The identity version.
97848
+ * The Identity Version of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: '1.0.0.0'.
96101
97849
  */
96102
97850
  identityVersion?: string | null;
96103
97851
  /**
96104
- * Whether or not the app is a bundle.
97852
+ * Whether or not the app is a bundle. If TRUE, app is a bundle; if FALSE, app is not a bundle.
96105
97853
  */
96106
97854
  isBundle?: boolean | null;
96107
97855
  /**
@@ -99659,6 +101407,12 @@ export declare const EducationModuleStatusObject: {
99659
101407
  readonly Published: "published";
99660
101408
  readonly UnknownFutureValue: "unknownFutureValue";
99661
101409
  };
101410
+ export declare const EducationSpeechTypeObject: {
101411
+ readonly Informative: "informative";
101412
+ readonly Personal: "personal";
101413
+ readonly Persuasive: "persuasive";
101414
+ readonly UnknownFutureValue: "unknownFutureValue";
101415
+ };
99662
101416
  export declare const EducationSubmissionStatusObject: {
99663
101417
  readonly Working: "working";
99664
101418
  readonly Submitted: "submitted";
@@ -99735,6 +101489,97 @@ export declare const EngagementAsyncOperationTypeObject: {
99735
101489
  /** A marker value for members added after the release of this API. */
99736
101490
  readonly UnknownFutureValue: "unknownFutureValue";
99737
101491
  };
101492
+ /**
101493
+ * Types of reactions to conversation messages.
101494
+ */
101495
+ export declare const EngagementConversationMessageReactionTypeObject: {
101496
+ /** Like reaction, represented as a thumbs-up hand. A positive sentiment. */
101497
+ readonly Like: "like";
101498
+ /** Love reaction, represented as a solid heart shape. A very positive sentiment. */
101499
+ readonly Love: "love";
101500
+ /** Celebrate reaction, represented as a party hat. A positive sentiment. */
101501
+ readonly Celebrate: "celebrate";
101502
+ /** Thank reaction, represented as applauding hands. A positive sentiment. */
101503
+ readonly Thank: "thank";
101504
+ /** Laugh reaction, represented as a grinning face. A positive sentiment. */
101505
+ readonly Laugh: "laugh";
101506
+ /** Sad reaction, represented as a frowning face. A sympathetic sentiment. */
101507
+ readonly Sad: "sad";
101508
+ /** Happy reaction, represented as an open mouth smile face. A very positive sentiment. */
101509
+ readonly Happy: "happy";
101510
+ /** Excited reaction, represented as a face with closed eyes and a big smile. A very positive sentiment. */
101511
+ readonly Excited: "excited";
101512
+ /** Smiling reaction, represented as a face with a small smile. A positive sentiment. */
101513
+ readonly Smile: "smile";
101514
+ /** Silly reaction, represented as an upside down smiling face. A positive sentiment. */
101515
+ readonly Silly: "silly";
101516
+ /** Intense laughter reaction, represented as a crying laughing face. A very positive sentiment. */
101517
+ readonly IntenseLaugh: "intenseLaugh";
101518
+ /** Star struck reaction, represented as a face with stars for eyes. A very positive sentiment. */
101519
+ readonly StarStruck: "starStruck";
101520
+ /** Goofy reaction, represented as a face with tongue sticking out of mouth. A positive sentiment. */
101521
+ readonly Goofy: "goofy";
101522
+ /** Thinking reaction, represented as a face with a hand on the chin. A neutral sentiment. */
101523
+ readonly Thinking: "thinking";
101524
+ /** Surprised reaction, represented as a face with its mouth open. A neutral sentiment. */
101525
+ readonly Surprised: "surprised";
101526
+ /** Mind blown reaction, represented as a face with its head covered in an exploding cloud. A positive sentiment. */
101527
+ readonly MindBlown: "mindBlown";
101528
+ /** Scared reaction, represented as a face with fearful look. A negative sentiment. */
101529
+ readonly Scared: "scared";
101530
+ /** Crying reaction, represented as a face with tears streaming down. A negative sentiment. */
101531
+ readonly Crying: "crying";
101532
+ /** Shocked reaction, represented as a face with two hands against cheeks and mouth open. A negative sentiment. */
101533
+ readonly Shocked: "shocked";
101534
+ /** Angry reaction, represented as a face with furrowed eyebrows and sad mouth. A very negative sentiment. */
101535
+ readonly Angry: "angry";
101536
+ /** Agree reaction, represented as a hand pointing upward. A positive sentiment. */
101537
+ readonly Agree: "agree";
101538
+ /** Praise reaction, represented as two hands facing outward. A positive sentiment. */
101539
+ readonly Praise: "praise";
101540
+ /** Taking notes reaction, represented as a hand holding a pen. A neutral sentiment. */
101541
+ readonly TakingNotes: "takingNotes";
101542
+ /** Heart broken reaction, represented as a broken heart. A negative sentiment. */
101543
+ readonly HeartBroken: "heartBroken";
101544
+ /** Support reaction, represented as red numbers showing 100. A positive sentiment. */
101545
+ readonly Support: "support";
101546
+ /** Confirmed reaction, represented as a green check mark. A neutral sentiment. */
101547
+ readonly Confirmed: "confirmed";
101548
+ /** Watching reaction, represented as two eyeballs. A neutral sentiment. */
101549
+ readonly Watching: "watching";
101550
+ /** Brain reaction, represented as a brain. A neutral sentiment. */
101551
+ readonly Brain: "brain";
101552
+ /** Medal reaction, represented as a medal hanging from a sash. A positive sentiment. */
101553
+ readonly Medal: "medal";
101554
+ /** Bullseye reaction, represented as a target with an arrow in the middle. A positive sentiment. */
101555
+ readonly Bullseye: "bullseye";
101556
+ /** A marker value for members added after the release of this API. */
101557
+ readonly UnknownFutureValue: "unknownFutureValue";
101558
+ };
101559
+ /**
101560
+ * Represents the moderation state of an Engage conversation message.
101561
+ */
101562
+ export declare const EngagementConversationModerationStateObject: {
101563
+ /** The content is published. */
101564
+ readonly Published: "published";
101565
+ /** The content is pending review by a moderator. */
101566
+ readonly PendingReview: "pendingReview";
101567
+ /** he content has been rejected by a moderator. */
101568
+ readonly Dismissed: "dismissed";
101569
+ /** A marker value for members added after the release of this API. */
101570
+ readonly UnknownFutureValue: "unknownFutureValue";
101571
+ };
101572
+ /**
101573
+ * Indicates that the resource is in migration state and is currently being used for migration purposes.
101574
+ */
101575
+ export declare const EngagementCreationModeObject: {
101576
+ /** Unspecified creation mode. */
101577
+ readonly None: "none";
101578
+ /** Creation is a migration. */
101579
+ readonly Migration: "migration";
101580
+ /** A marker value for members added after the release of this API. */
101581
+ readonly UnknownFutureValue: "unknownFutureValue";
101582
+ };
99738
101583
  export declare const EnrollmentStateObject: {
99739
101584
  /** Device enrollment state is unknown */
99740
101585
  readonly Unknown: "unknown";
@@ -100314,6 +102159,37 @@ export declare const ManagementAgentTypeObject: {
100314
102159
  readonly Microsoft365ManagedMdm: "microsoft365ManagedMdm";
100315
102160
  readonly MsSense: "msSense";
100316
102161
  };
102162
+ /**
102163
+ * Management state of device in Microsoft Intune.
102164
+ */
102165
+ export declare const ManagementStateObject: {
102166
+ /** The device is under management */
102167
+ readonly Managed: "managed";
102168
+ /** A retire command is occuring on the device and in the process of unenrolling from management */
102169
+ readonly RetirePending: "retirePending";
102170
+ /** Retire command failed on the device */
102171
+ readonly RetireFailed: "retireFailed";
102172
+ /** A wipe command is occuring on the device and in the process of unenrolling from management */
102173
+ readonly WipePending: "wipePending";
102174
+ /** Wipe command failed on the device */
102175
+ readonly WipeFailed: "wipeFailed";
102176
+ /** The device is unhealthy. */
102177
+ readonly Unhealthy: "unhealthy";
102178
+ /** A delete command is occuring on the device */
102179
+ readonly DeletePending: "deletePending";
102180
+ /** A retire command was issued for the device */
102181
+ readonly RetireIssued: "retireIssued";
102182
+ /** A wipe command was issued for the device */
102183
+ readonly WipeIssued: "wipeIssued";
102184
+ /** A wipe command for this device has been canceled */
102185
+ readonly WipeCanceled: "wipeCanceled";
102186
+ /** A retire command for this device has been canceled */
102187
+ readonly RetireCanceled: "retireCanceled";
102188
+ /** The device is discovered but not fully enrolled. */
102189
+ readonly Discovered: "discovered";
102190
+ /** Evolvable enumeration sentinel value. Do not use. */
102191
+ readonly UnknownFutureValue: "unknownFutureValue";
102192
+ };
100317
102193
  /**
100318
102194
  * App configuration key types.
100319
102195
  */
@@ -101980,12 +103856,20 @@ export declare const ProtectionRuleStatusObject: {
101980
103856
  readonly Completed: "completed";
101981
103857
  readonly CompletedWithErrors: "completedWithErrors";
101982
103858
  readonly UnknownFutureValue: "unknownFutureValue";
103859
+ readonly UpdateRequested: "updateRequested";
103860
+ readonly DeleteRequested: "deleteRequested";
101983
103861
  };
101984
103862
  export declare const ProtectionScopeStateObject: {
101985
103863
  readonly NotModified: "notModified";
101986
103864
  readonly Modified: "modified";
101987
103865
  readonly UnknownFutureValue: "unknownFutureValue";
101988
103866
  };
103867
+ export declare const ProtectionSourceObject: {
103868
+ readonly None: "none";
103869
+ readonly Manual: "manual";
103870
+ readonly DynamicRule: "dynamicRule";
103871
+ readonly UnknownFutureValue: "unknownFutureValue";
103872
+ };
101989
103873
  export declare const ProtectionUnitsBulkJobStatusObject: {
101990
103874
  readonly Unknown: "unknown";
101991
103875
  readonly Active: "active";
@@ -102000,6 +103884,9 @@ export declare const ProtectionUnitStatusObject: {
102000
103884
  readonly Unprotected: "unprotected";
102001
103885
  readonly RemoveRequested: "removeRequested";
102002
103886
  readonly UnknownFutureValue: "unknownFutureValue";
103887
+ readonly OffboardRequested: "offboardRequested";
103888
+ readonly Offboarded: "offboarded";
103889
+ readonly CancelOffboardRequested: "cancelOffboardRequested";
102003
103890
  };
102004
103891
  export declare const ProvisioningActionObject: {
102005
103892
  readonly Other: "other";
@@ -102397,6 +104284,12 @@ export declare const RatingUnitedStatesTelevisionTypeObject: {
102397
104284
  /** TV-MA, adults only */
102398
104285
  readonly Adults: "adults";
102399
104286
  };
104287
+ export declare const ReadingCoachStoryTypeObject: {
104288
+ readonly AiGenerated: "aiGenerated";
104289
+ readonly ReadWorks: "readWorks";
104290
+ readonly UserProvided: "userProvided";
104291
+ readonly UnknownFutureValue: "unknownFutureValue";
104292
+ };
102400
104293
  export declare const RecipientScopeTypeObject: {
102401
104294
  readonly None: "none";
102402
104295
  readonly Internal: "internal";
@@ -103696,6 +105589,21 @@ export declare const WeakAlgorithmsObject: {
103696
105589
  readonly RsaSha1: "rsaSha1";
103697
105590
  readonly UnknownFutureValue: "unknownFutureValue";
103698
105591
  };
105592
+ export declare const WebApplicationFirewallDnsRecordTypeObject: {
105593
+ readonly Cname: "cname";
105594
+ readonly UnknownFutureValue: "unknownFutureValue";
105595
+ };
105596
+ export declare const WebApplicationFirewallProviderTypeObject: {
105597
+ readonly Akamai: "akamai";
105598
+ readonly Cloudflare: "cloudflare";
105599
+ readonly UnknownFutureValue: "unknownFutureValue";
105600
+ };
105601
+ export declare const WebApplicationFirewallVerificationStatusObject: {
105602
+ readonly Success: "success";
105603
+ readonly Warning: "warning";
105604
+ readonly Failure: "failure";
105605
+ readonly UnknownFutureValue: "unknownFutureValue";
105606
+ };
103699
105607
  /**
103700
105608
  * Web Browser Cookie Settings.
103701
105609
  */