@microsoft/msgraph-sdk 1.0.0-preview.25 → 1.0.0-preview.26
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 +1006 -13
- package/models/index.d.ts.map +1 -1
- package/models/index.js +970 -22
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +80 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +60 -1
- package/models/security/index.js.map +1 -1
- package/package.json +3 -5
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -3565,6 +3565,10 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3565
3565
|
* The main logo for the application. Not nullable.
|
|
3566
3566
|
*/
|
|
3567
3567
|
logo?: string;
|
|
3568
|
+
/**
|
|
3569
|
+
* Specifies whether the Native Authentication APIs are enabled for the application. The possible values are: none and all. Default is none. For more information, see Native Authentication.
|
|
3570
|
+
*/
|
|
3571
|
+
nativeAuthenticationApisEnabled?: NativeAuthenticationApisEnabled[];
|
|
3568
3572
|
/**
|
|
3569
3573
|
* Notes relevant for the management of the application.
|
|
3570
3574
|
*/
|
|
@@ -3856,6 +3860,8 @@ export interface AppLogCollectionRequestCollectionResponse extends BaseCollectio
|
|
|
3856
3860
|
}
|
|
3857
3861
|
export type AppLogDecryptionAlgorithm = (typeof AppLogDecryptionAlgorithmObject)[keyof typeof AppLogDecryptionAlgorithmObject];
|
|
3858
3862
|
export type AppLogUploadState = (typeof AppLogUploadStateObject)[keyof typeof AppLogUploadStateObject];
|
|
3863
|
+
export interface AppManagementApplicationConfiguration extends AppManagementConfiguration, Parsable {
|
|
3864
|
+
}
|
|
3859
3865
|
export interface AppManagementConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
3860
3866
|
/**
|
|
3861
3867
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -3890,7 +3896,7 @@ export interface AppManagementPolicy extends Parsable, PolicyBase {
|
|
|
3890
3896
|
/**
|
|
3891
3897
|
* Restrictions that apply to an application or service principal object.
|
|
3892
3898
|
*/
|
|
3893
|
-
restrictions?:
|
|
3899
|
+
restrictions?: CustomAppManagementConfiguration;
|
|
3894
3900
|
}
|
|
3895
3901
|
export interface AppManagementPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
3896
3902
|
/**
|
|
@@ -3898,6 +3904,8 @@ export interface AppManagementPolicyCollectionResponse extends BaseCollectionPag
|
|
|
3898
3904
|
*/
|
|
3899
3905
|
value?: AppManagementPolicy[];
|
|
3900
3906
|
}
|
|
3907
|
+
export interface AppManagementServicePrincipalConfiguration extends AppManagementConfiguration, Parsable {
|
|
3908
|
+
}
|
|
3901
3909
|
export interface AppRole extends AdditionalDataHolder, BackedModel, Parsable {
|
|
3902
3910
|
/**
|
|
3903
3911
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -4207,7 +4215,7 @@ export interface AssignedLicense extends AdditionalDataHolder, BackedModel, Pars
|
|
|
4207
4215
|
*/
|
|
4208
4216
|
backingStoreEnabled?: boolean;
|
|
4209
4217
|
/**
|
|
4210
|
-
* A collection of the unique identifiers for plans that have been disabled.
|
|
4218
|
+
* A collection of the unique identifiers for plans that have been disabled. IDs are available in servicePlans > servicePlanId in the tenant's subscribedSkus or serviceStatus > servicePlanId in the tenant's companySubscription.
|
|
4211
4219
|
*/
|
|
4212
4220
|
disabledPlans?: Guid[];
|
|
4213
4221
|
/**
|
|
@@ -4215,7 +4223,7 @@ export interface AssignedLicense extends AdditionalDataHolder, BackedModel, Pars
|
|
|
4215
4223
|
*/
|
|
4216
4224
|
odataType?: string;
|
|
4217
4225
|
/**
|
|
4218
|
-
* The unique identifier for the SKU.
|
|
4226
|
+
* The unique identifier for the SKU. Corresponds to the skuId from subscribedSkus or companySubscription.
|
|
4219
4227
|
*/
|
|
4220
4228
|
skuId?: Guid;
|
|
4221
4229
|
}
|
|
@@ -5303,7 +5311,7 @@ export interface Authentication extends Entity, Parsable {
|
|
|
5303
5311
|
*/
|
|
5304
5312
|
microsoftAuthenticatorMethods?: MicrosoftAuthenticatorAuthenticationMethod[];
|
|
5305
5313
|
/**
|
|
5306
|
-
* Represents the status of a long-running operation.
|
|
5314
|
+
* Represents the status of a long-running operation, such as a password reset operation.
|
|
5307
5315
|
*/
|
|
5308
5316
|
operations?: LongRunningOperation[];
|
|
5309
5317
|
/**
|
|
@@ -6398,6 +6406,14 @@ export interface BookingAppointment extends Entity, Parsable {
|
|
|
6398
6406
|
* The URL of the meeting to join anonymously.
|
|
6399
6407
|
*/
|
|
6400
6408
|
anonymousJoinWebUrl?: string;
|
|
6409
|
+
/**
|
|
6410
|
+
* Custom label that can be stamped on this appointment by users.
|
|
6411
|
+
*/
|
|
6412
|
+
appointmentLabel?: string;
|
|
6413
|
+
/**
|
|
6414
|
+
* The createdDateTime property
|
|
6415
|
+
*/
|
|
6416
|
+
createdDateTime?: Date;
|
|
6401
6417
|
/**
|
|
6402
6418
|
* The customerEmailAddress property
|
|
6403
6419
|
*/
|
|
@@ -6434,6 +6450,10 @@ export interface BookingAppointment extends Entity, Parsable {
|
|
|
6434
6450
|
* The current number of customers in the appointment
|
|
6435
6451
|
*/
|
|
6436
6452
|
filledAttendeesCount?: number;
|
|
6453
|
+
/**
|
|
6454
|
+
* The isCustomerAllowedToManageBooking property
|
|
6455
|
+
*/
|
|
6456
|
+
isCustomerAllowedToManageBooking?: boolean;
|
|
6437
6457
|
/**
|
|
6438
6458
|
* If true, indicates that the appointment will be held online. Default value is false.
|
|
6439
6459
|
*/
|
|
@@ -6442,6 +6462,10 @@ export interface BookingAppointment extends Entity, Parsable {
|
|
|
6442
6462
|
* The URL of the online meeting for the appointment.
|
|
6443
6463
|
*/
|
|
6444
6464
|
joinWebUrl?: string;
|
|
6465
|
+
/**
|
|
6466
|
+
* The lastUpdatedDateTime property
|
|
6467
|
+
*/
|
|
6468
|
+
lastUpdatedDateTime?: Date;
|
|
6445
6469
|
/**
|
|
6446
6470
|
* The maximum number of customers allowed in an appointment. If maximumAttendeesCount of the service is greater than 1, pass valid customer IDs while creating or updating an appointment. To create a customer, use the Create bookingCustomer operation.
|
|
6447
6471
|
*/
|
|
@@ -6521,6 +6545,10 @@ export interface BookingBusiness extends Entity, Parsable {
|
|
|
6521
6545
|
* All the appointments of this business. Read-only. Nullable.
|
|
6522
6546
|
*/
|
|
6523
6547
|
appointments?: BookingAppointment[];
|
|
6548
|
+
/**
|
|
6549
|
+
* The bookingPageSettings property
|
|
6550
|
+
*/
|
|
6551
|
+
bookingPageSettings?: BookingPageSettings;
|
|
6524
6552
|
/**
|
|
6525
6553
|
* The hours of operation for the business.
|
|
6526
6554
|
*/
|
|
@@ -6533,6 +6561,10 @@ export interface BookingBusiness extends Entity, Parsable {
|
|
|
6533
6561
|
* The set of appointments of this business in a specified date range. Read-only. Nullable.
|
|
6534
6562
|
*/
|
|
6535
6563
|
calendarView?: BookingAppointment[];
|
|
6564
|
+
/**
|
|
6565
|
+
* The createdDateTime property
|
|
6566
|
+
*/
|
|
6567
|
+
createdDateTime?: Date;
|
|
6536
6568
|
/**
|
|
6537
6569
|
* All the customers of this business. Read-only. Nullable.
|
|
6538
6570
|
*/
|
|
@@ -6561,6 +6593,10 @@ export interface BookingBusiness extends Entity, Parsable {
|
|
|
6561
6593
|
* The language of the self-service booking page.
|
|
6562
6594
|
*/
|
|
6563
6595
|
languageTag?: string;
|
|
6596
|
+
/**
|
|
6597
|
+
* The lastUpdatedDateTime property
|
|
6598
|
+
*/
|
|
6599
|
+
lastUpdatedDateTime?: Date;
|
|
6564
6600
|
/**
|
|
6565
6601
|
* The telephone number for the business. The phone property, together with address and webSiteUrl, appear in the footer of a business scheduling page.
|
|
6566
6602
|
*/
|
|
@@ -6612,6 +6648,10 @@ export interface BookingCustomer extends BookingCustomerBase, Parsable {
|
|
|
6612
6648
|
* Addresses associated with the customer. The attribute type of physicalAddress is not supported in v1.0. Internally we map the addresses to the type others.
|
|
6613
6649
|
*/
|
|
6614
6650
|
addresses?: PhysicalAddress[];
|
|
6651
|
+
/**
|
|
6652
|
+
* The createdDateTime property
|
|
6653
|
+
*/
|
|
6654
|
+
createdDateTime?: Date;
|
|
6615
6655
|
/**
|
|
6616
6656
|
* The name of the customer.
|
|
6617
6657
|
*/
|
|
@@ -6620,6 +6660,10 @@ export interface BookingCustomer extends BookingCustomerBase, Parsable {
|
|
|
6620
6660
|
* The SMTP address of the customer.
|
|
6621
6661
|
*/
|
|
6622
6662
|
emailAddress?: string;
|
|
6663
|
+
/**
|
|
6664
|
+
* The lastUpdatedDateTime property
|
|
6665
|
+
*/
|
|
6666
|
+
lastUpdatedDateTime?: Date;
|
|
6623
6667
|
/**
|
|
6624
6668
|
* Phone numbers associated with the customer, including home, business and mobile numbers.
|
|
6625
6669
|
*/
|
|
@@ -6696,10 +6740,18 @@ export interface BookingCustomQuestion extends Entity, Parsable {
|
|
|
6696
6740
|
* List of possible answer values.
|
|
6697
6741
|
*/
|
|
6698
6742
|
answerOptions?: string[];
|
|
6743
|
+
/**
|
|
6744
|
+
* The createdDateTime property
|
|
6745
|
+
*/
|
|
6746
|
+
createdDateTime?: Date;
|
|
6699
6747
|
/**
|
|
6700
6748
|
* The question.
|
|
6701
6749
|
*/
|
|
6702
6750
|
displayName?: string;
|
|
6751
|
+
/**
|
|
6752
|
+
* The lastUpdatedDateTime property
|
|
6753
|
+
*/
|
|
6754
|
+
lastUpdatedDateTime?: Date;
|
|
6703
6755
|
}
|
|
6704
6756
|
export interface BookingCustomQuestionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6705
6757
|
/**
|
|
@@ -6707,6 +6759,65 @@ export interface BookingCustomQuestionCollectionResponse extends BaseCollectionP
|
|
|
6707
6759
|
*/
|
|
6708
6760
|
value?: BookingCustomQuestion[];
|
|
6709
6761
|
}
|
|
6762
|
+
export type BookingPageAccessControl = (typeof BookingPageAccessControlObject)[keyof typeof BookingPageAccessControlObject];
|
|
6763
|
+
export interface BookingPageSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
6764
|
+
/**
|
|
6765
|
+
* The accessControl property
|
|
6766
|
+
*/
|
|
6767
|
+
accessControl?: BookingPageAccessControl;
|
|
6768
|
+
/**
|
|
6769
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6770
|
+
*/
|
|
6771
|
+
additionalData?: Record<string, unknown>;
|
|
6772
|
+
/**
|
|
6773
|
+
* Stores model information.
|
|
6774
|
+
*/
|
|
6775
|
+
backingStoreEnabled?: boolean;
|
|
6776
|
+
/**
|
|
6777
|
+
* Custom color for bookings page. Value should be in Hex format. Example: `#123456`.
|
|
6778
|
+
*/
|
|
6779
|
+
bookingPageColorCode?: string;
|
|
6780
|
+
/**
|
|
6781
|
+
* The time zone of the customer. For a list of possible values, see [dateTimeTimeZone](https://learn.microsoft.com/en-us/graph/api/resources/datetimetimezone?view=graph-rest-beta).
|
|
6782
|
+
*/
|
|
6783
|
+
businessTimeZone?: string;
|
|
6784
|
+
/**
|
|
6785
|
+
* Customer consent message that is displayed in the Booking page.
|
|
6786
|
+
*/
|
|
6787
|
+
customerConsentMessage?: string;
|
|
6788
|
+
/**
|
|
6789
|
+
* Enforcing One Time Password (OTP) during appointment creation.
|
|
6790
|
+
*/
|
|
6791
|
+
enforceOneTimePassword?: boolean;
|
|
6792
|
+
/**
|
|
6793
|
+
* Enable display of business logo display on the Bookings page.
|
|
6794
|
+
*/
|
|
6795
|
+
isBusinessLogoDisplayEnabled?: boolean;
|
|
6796
|
+
/**
|
|
6797
|
+
* Enforces customer consent on the customer consent message before appointment is booked.
|
|
6798
|
+
*/
|
|
6799
|
+
isCustomerConsentEnabled?: boolean;
|
|
6800
|
+
/**
|
|
6801
|
+
* Disable booking page to be indexed by search engines. False by default.
|
|
6802
|
+
*/
|
|
6803
|
+
isSearchEngineIndexabilityDisabled?: boolean;
|
|
6804
|
+
/**
|
|
6805
|
+
* If business time zone the default value for the time slots that we show in the bookings page. False by default.
|
|
6806
|
+
*/
|
|
6807
|
+
isTimeSlotTimeZoneSetToBusinessTimeZone?: boolean;
|
|
6808
|
+
/**
|
|
6809
|
+
* The OdataType property
|
|
6810
|
+
*/
|
|
6811
|
+
odataType?: string;
|
|
6812
|
+
/**
|
|
6813
|
+
* The URL of the business' Privacy Policy.
|
|
6814
|
+
*/
|
|
6815
|
+
privacyPolicyWebUrl?: string;
|
|
6816
|
+
/**
|
|
6817
|
+
* The URL of the business' Terms and Conditions.
|
|
6818
|
+
*/
|
|
6819
|
+
termsAndConditionsWebUrl?: string;
|
|
6820
|
+
}
|
|
6710
6821
|
export type BookingPriceType = (typeof BookingPriceTypeObject)[keyof typeof BookingPriceTypeObject];
|
|
6711
6822
|
export interface BookingQuestionAnswer extends AdditionalDataHolder, BackedModel, Parsable {
|
|
6712
6823
|
/**
|
|
@@ -6802,7 +6913,39 @@ export interface BookingReminder extends AdditionalDataHolder, BackedModel, Pars
|
|
|
6802
6913
|
recipients?: BookingReminderRecipients;
|
|
6803
6914
|
}
|
|
6804
6915
|
export type BookingReminderRecipients = (typeof BookingReminderRecipientsObject)[keyof typeof BookingReminderRecipientsObject];
|
|
6916
|
+
export interface BookingsAvailability extends AdditionalDataHolder, BackedModel, Parsable {
|
|
6917
|
+
/**
|
|
6918
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
6919
|
+
*/
|
|
6920
|
+
additionalData?: Record<string, unknown>;
|
|
6921
|
+
/**
|
|
6922
|
+
* The availabilityType property
|
|
6923
|
+
*/
|
|
6924
|
+
availabilityType?: BookingsServiceAvailabilityType;
|
|
6925
|
+
/**
|
|
6926
|
+
* Stores model information.
|
|
6927
|
+
*/
|
|
6928
|
+
backingStoreEnabled?: boolean;
|
|
6929
|
+
/**
|
|
6930
|
+
* The hours of operation in a week. This is set to null if the availability type is not customWeeklyHours
|
|
6931
|
+
*/
|
|
6932
|
+
businessHours?: BookingWorkHours[];
|
|
6933
|
+
/**
|
|
6934
|
+
* The OdataType property
|
|
6935
|
+
*/
|
|
6936
|
+
odataType?: string;
|
|
6937
|
+
}
|
|
6805
6938
|
export type BookingsAvailabilityStatus = (typeof BookingsAvailabilityStatusObject)[keyof typeof BookingsAvailabilityStatusObject];
|
|
6939
|
+
export interface BookingsAvailabilityWindow extends BookingsAvailability, Parsable {
|
|
6940
|
+
/**
|
|
6941
|
+
* Allow customers to end date of availability window.
|
|
6942
|
+
*/
|
|
6943
|
+
endDate?: DateOnly;
|
|
6944
|
+
/**
|
|
6945
|
+
* Allow customers to start date of availability window.
|
|
6946
|
+
*/
|
|
6947
|
+
startDate?: DateOnly;
|
|
6948
|
+
}
|
|
6806
6949
|
/**
|
|
6807
6950
|
* This type represents the set of policies that dictate how bookings can be created in a Booking Calendar.
|
|
6808
6951
|
*/
|
|
@@ -6819,6 +6962,18 @@ export interface BookingSchedulingPolicy extends AdditionalDataHolder, BackedMod
|
|
|
6819
6962
|
* Stores model information.
|
|
6820
6963
|
*/
|
|
6821
6964
|
backingStoreEnabled?: boolean;
|
|
6965
|
+
/**
|
|
6966
|
+
* collection of custom availabilities for a given time range.
|
|
6967
|
+
*/
|
|
6968
|
+
customAvailabilities?: BookingsAvailabilityWindow[];
|
|
6969
|
+
/**
|
|
6970
|
+
* General availability
|
|
6971
|
+
*/
|
|
6972
|
+
generalAvailability?: BookingsAvailability;
|
|
6973
|
+
/**
|
|
6974
|
+
* Enable sending meeting invite to customers. False by default.
|
|
6975
|
+
*/
|
|
6976
|
+
isMeetingInviteToCustomersEnabled?: boolean;
|
|
6822
6977
|
/**
|
|
6823
6978
|
* Maximum number of days in advance that a booking can be made. It follows the ISO 8601 format.
|
|
6824
6979
|
*/
|
|
@@ -6848,6 +7003,10 @@ export interface BookingService extends Entity, Parsable {
|
|
|
6848
7003
|
* Additional information that is sent to the customer when an appointment is confirmed.
|
|
6849
7004
|
*/
|
|
6850
7005
|
additionalInformation?: string;
|
|
7006
|
+
/**
|
|
7007
|
+
* The createdDateTime property
|
|
7008
|
+
*/
|
|
7009
|
+
createdDateTime?: Date;
|
|
6851
7010
|
/**
|
|
6852
7011
|
* Contains the set of custom questions associated with a particular service.
|
|
6853
7012
|
*/
|
|
@@ -6884,6 +7043,10 @@ export interface BookingService extends Entity, Parsable {
|
|
|
6884
7043
|
* True if the URL to join the appointment anonymously (anonymousJoinWebUrl) will be generated for the appointment booked for this service.
|
|
6885
7044
|
*/
|
|
6886
7045
|
isAnonymousJoinEnabled?: boolean;
|
|
7046
|
+
/**
|
|
7047
|
+
* The isCustomerAllowedToManageBooking property
|
|
7048
|
+
*/
|
|
7049
|
+
isCustomerAllowedToManageBooking?: boolean;
|
|
6887
7050
|
/**
|
|
6888
7051
|
* True means this service is not available to customers for booking.
|
|
6889
7052
|
*/
|
|
@@ -6896,6 +7059,10 @@ export interface BookingService extends Entity, Parsable {
|
|
|
6896
7059
|
* The language of the self-service booking page.
|
|
6897
7060
|
*/
|
|
6898
7061
|
languageTag?: string;
|
|
7062
|
+
/**
|
|
7063
|
+
* The lastUpdatedDateTime property
|
|
7064
|
+
*/
|
|
7065
|
+
lastUpdatedDateTime?: Date;
|
|
6899
7066
|
/**
|
|
6900
7067
|
* The maximum number of customers allowed in a service. If maximumAttendeesCount of the service is greater than 1, pass valid customer IDs while creating or updating an appointment. To create a customer, use the Create bookingCustomer operation.
|
|
6901
7068
|
*/
|
|
@@ -6935,6 +7102,7 @@ export interface BookingServiceCollectionResponse extends BaseCollectionPaginati
|
|
|
6935
7102
|
*/
|
|
6936
7103
|
value?: BookingService[];
|
|
6937
7104
|
}
|
|
7105
|
+
export type BookingsServiceAvailabilityType = (typeof BookingsServiceAvailabilityTypeObject)[keyof typeof BookingsServiceAvailabilityTypeObject];
|
|
6938
7106
|
/**
|
|
6939
7107
|
* Represents a staff member who provides services in a business.
|
|
6940
7108
|
*/
|
|
@@ -6943,6 +7111,10 @@ export interface BookingStaffMember extends BookingStaffMemberBase, Parsable {
|
|
|
6943
7111
|
* True means that if the staff member is a Microsoft 365 user, the Bookings API would verify the staff member's availability in their personal calendar in Microsoft 365, before making a booking.
|
|
6944
7112
|
*/
|
|
6945
7113
|
availabilityIsAffectedByPersonalCalendar?: boolean;
|
|
7114
|
+
/**
|
|
7115
|
+
* The createdDateTime property
|
|
7116
|
+
*/
|
|
7117
|
+
createdDateTime?: Date;
|
|
6946
7118
|
/**
|
|
6947
7119
|
* The name of the staff member, as displayed to customers. Required.
|
|
6948
7120
|
*/
|
|
@@ -6955,6 +7127,10 @@ export interface BookingStaffMember extends BookingStaffMemberBase, Parsable {
|
|
|
6955
7127
|
* True indicates that a staff member will be notified via email when a booking assigned to them is created or changed.
|
|
6956
7128
|
*/
|
|
6957
7129
|
isEmailNotificationEnabled?: boolean;
|
|
7130
|
+
/**
|
|
7131
|
+
* The lastUpdatedDateTime property
|
|
7132
|
+
*/
|
|
7133
|
+
lastUpdatedDateTime?: Date;
|
|
6958
7134
|
/**
|
|
6959
7135
|
* The membershipStatus property
|
|
6960
7136
|
*/
|
|
@@ -7965,7 +8141,7 @@ export interface CallTranscript extends Entity, Parsable {
|
|
|
7965
8141
|
*/
|
|
7966
8142
|
content?: string;
|
|
7967
8143
|
/**
|
|
7968
|
-
* Date and time at which the transcript was created. The
|
|
8144
|
+
* Date and time at which the transcript 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. Read-only.
|
|
7969
8145
|
*/
|
|
7970
8146
|
createdDateTime?: Date;
|
|
7971
8147
|
/**
|
|
@@ -8183,6 +8359,10 @@ export interface Channel extends Entity, Parsable {
|
|
|
8183
8359
|
* Metadata for the location where the channel's files are stored.
|
|
8184
8360
|
*/
|
|
8185
8361
|
filesFolder?: DriveItem;
|
|
8362
|
+
/**
|
|
8363
|
+
* Indicates whether the channel is archived. Read-only.
|
|
8364
|
+
*/
|
|
8365
|
+
isArchived?: boolean;
|
|
8186
8366
|
/**
|
|
8187
8367
|
* Indicates whether the channel should be marked as recommended for all members of the team to show in their channel list. Note: All recommended channels automatically show in the channels list for education and frontline worker users. The property can only be set programmatically via the Create team method. The default value is false.
|
|
8188
8368
|
*/
|
|
@@ -12501,6 +12681,12 @@ export declare function createAppLogCollectionRequestCollectionResponseFromDiscr
|
|
|
12501
12681
|
* @returns {AppLogCollectionRequest}
|
|
12502
12682
|
*/
|
|
12503
12683
|
export declare function createAppLogCollectionRequestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12684
|
+
/**
|
|
12685
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12686
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12687
|
+
* @returns {AppManagementApplicationConfiguration}
|
|
12688
|
+
*/
|
|
12689
|
+
export declare function createAppManagementApplicationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12504
12690
|
/**
|
|
12505
12691
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12506
12692
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12519,6 +12705,12 @@ export declare function createAppManagementPolicyCollectionResponseFromDiscrimin
|
|
|
12519
12705
|
* @returns {AppManagementPolicy}
|
|
12520
12706
|
*/
|
|
12521
12707
|
export declare function createAppManagementPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12708
|
+
/**
|
|
12709
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12710
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12711
|
+
* @returns {AppManagementServicePrincipalConfiguration}
|
|
12712
|
+
*/
|
|
12713
|
+
export declare function createAppManagementServicePrincipalConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12522
12714
|
/**
|
|
12523
12715
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12524
12716
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13359,6 +13551,12 @@ export declare function createBookingCustomQuestionCollectionResponseFromDiscrim
|
|
|
13359
13551
|
* @returns {BookingCustomQuestion}
|
|
13360
13552
|
*/
|
|
13361
13553
|
export declare function createBookingCustomQuestionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13554
|
+
/**
|
|
13555
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13556
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13557
|
+
* @returns {BookingPageSettings}
|
|
13558
|
+
*/
|
|
13559
|
+
export declare function createBookingPageSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13362
13560
|
/**
|
|
13363
13561
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13364
13562
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13377,6 +13575,18 @@ export declare function createBookingQuestionAssignmentFromDiscriminatorValue(pa
|
|
|
13377
13575
|
* @returns {BookingReminder}
|
|
13378
13576
|
*/
|
|
13379
13577
|
export declare function createBookingReminderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13578
|
+
/**
|
|
13579
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13580
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13581
|
+
* @returns {BookingsAvailability}
|
|
13582
|
+
*/
|
|
13583
|
+
export declare function createBookingsAvailabilityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13584
|
+
/**
|
|
13585
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13586
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13587
|
+
* @returns {BookingsAvailabilityWindow}
|
|
13588
|
+
*/
|
|
13589
|
+
export declare function createBookingsAvailabilityWindowFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13380
13590
|
/**
|
|
13381
13591
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13382
13592
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14667,6 +14877,12 @@ export declare function createCrossTenantAccessPolicyTargetConfigurationFromDisc
|
|
|
14667
14877
|
* @returns {CrossTenantAccessPolicyTarget}
|
|
14668
14878
|
*/
|
|
14669
14879
|
export declare function createCrossTenantAccessPolicyTargetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14880
|
+
/**
|
|
14881
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14882
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14883
|
+
* @returns {CrossTenantAccessPolicyTenantRestrictions}
|
|
14884
|
+
*/
|
|
14885
|
+
export declare function createCrossTenantAccessPolicyTenantRestrictionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14670
14886
|
/**
|
|
14671
14887
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14672
14888
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14685,6 +14901,12 @@ export declare function createCrossTenantUserSyncInboundFromDiscriminatorValue(p
|
|
|
14685
14901
|
* @returns {CurrencyColumn}
|
|
14686
14902
|
*/
|
|
14687
14903
|
export declare function createCurrencyColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14904
|
+
/**
|
|
14905
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14906
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14907
|
+
* @returns {CustomAppManagementConfiguration}
|
|
14908
|
+
*/
|
|
14909
|
+
export declare function createCustomAppManagementConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14688
14910
|
/**
|
|
14689
14911
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14690
14912
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15519,6 +15741,12 @@ export declare function createDeviceRegistrationMembershipFromDiscriminatorValue
|
|
|
15519
15741
|
* @returns {DeviceRegistrationPolicy}
|
|
15520
15742
|
*/
|
|
15521
15743
|
export declare function createDeviceRegistrationPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15744
|
+
/**
|
|
15745
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15746
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15747
|
+
* @returns {DevicesFilter}
|
|
15748
|
+
*/
|
|
15749
|
+
export declare function createDevicesFilterFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15522
15750
|
/**
|
|
15523
15751
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15524
15752
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17061,6 +17289,12 @@ export declare function createInitiatorFromDiscriminatorValue(parseNode: ParseNo
|
|
|
17061
17289
|
* @returns {InsightIdentity}
|
|
17062
17290
|
*/
|
|
17063
17291
|
export declare function createInsightIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17292
|
+
/**
|
|
17293
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17294
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17295
|
+
* @returns {InsightsSettings}
|
|
17296
|
+
*/
|
|
17297
|
+
export declare function createInsightsSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17064
17298
|
/**
|
|
17065
17299
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17066
17300
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17451,6 +17685,12 @@ export declare function createItemAttachmentFromDiscriminatorValue(parseNode: Pa
|
|
|
17451
17685
|
* @returns {ItemBody}
|
|
17452
17686
|
*/
|
|
17453
17687
|
export declare function createItemBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17688
|
+
/**
|
|
17689
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17690
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17691
|
+
* @returns {ItemInsights}
|
|
17692
|
+
*/
|
|
17693
|
+
export declare function createItemInsightsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17454
17694
|
/**
|
|
17455
17695
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17456
17696
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21183,6 +21423,18 @@ export declare function createServiceProvisioningErrorFromDiscriminatorValue(par
|
|
|
21183
21423
|
* @returns {ServiceProvisioningXmlError}
|
|
21184
21424
|
*/
|
|
21185
21425
|
export declare function createServiceProvisioningXmlErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21426
|
+
/**
|
|
21427
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21428
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21429
|
+
* @returns {ServiceStorageQuotaBreakdownCollectionResponse}
|
|
21430
|
+
*/
|
|
21431
|
+
export declare function createServiceStorageQuotaBreakdownCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21432
|
+
/**
|
|
21433
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21434
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21435
|
+
* @returns {ServiceStorageQuotaBreakdown}
|
|
21436
|
+
*/
|
|
21437
|
+
export declare function createServiceStorageQuotaBreakdownFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21186
21438
|
/**
|
|
21187
21439
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21188
21440
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21669,6 +21921,18 @@ export declare function createStorageFromDiscriminatorValue(parseNode: ParseNode
|
|
|
21669
21921
|
* @returns {StoragePlanInformation}
|
|
21670
21922
|
*/
|
|
21671
21923
|
export declare function createStoragePlanInformationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21924
|
+
/**
|
|
21925
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21926
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21927
|
+
* @returns {StorageQuotaBreakdown}
|
|
21928
|
+
*/
|
|
21929
|
+
export declare function createStorageQuotaBreakdownFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21930
|
+
/**
|
|
21931
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21932
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21933
|
+
* @returns {StorageSettings}
|
|
21934
|
+
*/
|
|
21935
|
+
export declare function createStorageSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21672
21936
|
/**
|
|
21673
21937
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21674
21938
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -22947,6 +23211,12 @@ export declare function createUnifiedRoleScheduleBaseFromDiscriminatorValue(pars
|
|
|
22947
23211
|
* @returns {UnifiedRoleScheduleInstanceBase}
|
|
22948
23212
|
*/
|
|
22949
23213
|
export declare function createUnifiedRoleScheduleInstanceBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23214
|
+
/**
|
|
23215
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23216
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23217
|
+
* @returns {UnifiedStorageQuota}
|
|
23218
|
+
*/
|
|
23219
|
+
export declare function createUnifiedStorageQuotaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22950
23220
|
/**
|
|
22951
23221
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
22952
23222
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23409,6 +23679,12 @@ export declare function createUserFromDiscriminatorValue(parseNode: ParseNode |
|
|
|
23409
23679
|
* @returns {UserIdentity}
|
|
23410
23680
|
*/
|
|
23411
23681
|
export declare function createUserIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23682
|
+
/**
|
|
23683
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23684
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23685
|
+
* @returns {UserInsightsSettings}
|
|
23686
|
+
*/
|
|
23687
|
+
export declare function createUserInsightsSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23412
23688
|
/**
|
|
23413
23689
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23414
23690
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23511,6 +23787,12 @@ export declare function createUserSimulationDetailsFromDiscriminatorValue(parseN
|
|
|
23511
23787
|
* @returns {UserSimulationEventInfo}
|
|
23512
23788
|
*/
|
|
23513
23789
|
export declare function createUserSimulationEventInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23790
|
+
/**
|
|
23791
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23792
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23793
|
+
* @returns {UserStorage}
|
|
23794
|
+
*/
|
|
23795
|
+
export declare function createUserStorageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23514
23796
|
/**
|
|
23515
23797
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23516
23798
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23577,24 +23859,78 @@ export declare function createVirtualEventCollectionResponseFromDiscriminatorVal
|
|
|
23577
23859
|
* @returns {VirtualEvent}
|
|
23578
23860
|
*/
|
|
23579
23861
|
export declare function createVirtualEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23862
|
+
/**
|
|
23863
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23864
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23865
|
+
* @returns {VirtualEventPresenterCollectionResponse}
|
|
23866
|
+
*/
|
|
23867
|
+
export declare function createVirtualEventPresenterCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23868
|
+
/**
|
|
23869
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23870
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23871
|
+
* @returns {VirtualEventPresenterDetails}
|
|
23872
|
+
*/
|
|
23873
|
+
export declare function createVirtualEventPresenterDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23874
|
+
/**
|
|
23875
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23876
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23877
|
+
* @returns {VirtualEventPresenter}
|
|
23878
|
+
*/
|
|
23879
|
+
export declare function createVirtualEventPresenterFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23880
|
+
/**
|
|
23881
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23882
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23883
|
+
* @returns {VirtualEventPresenterInfo}
|
|
23884
|
+
*/
|
|
23885
|
+
export declare function createVirtualEventPresenterInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23580
23886
|
/**
|
|
23581
23887
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23582
23888
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23583
23889
|
* @returns {VirtualEventRegistrationCollectionResponse}
|
|
23584
23890
|
*/
|
|
23585
23891
|
export declare function createVirtualEventRegistrationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23892
|
+
/**
|
|
23893
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23894
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23895
|
+
* @returns {VirtualEventRegistrationConfiguration}
|
|
23896
|
+
*/
|
|
23897
|
+
export declare function createVirtualEventRegistrationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23898
|
+
/**
|
|
23899
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23900
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23901
|
+
* @returns {VirtualEventRegistrationCustomQuestion}
|
|
23902
|
+
*/
|
|
23903
|
+
export declare function createVirtualEventRegistrationCustomQuestionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23586
23904
|
/**
|
|
23587
23905
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23588
23906
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23589
23907
|
* @returns {VirtualEventRegistration}
|
|
23590
23908
|
*/
|
|
23591
23909
|
export declare function createVirtualEventRegistrationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23910
|
+
/**
|
|
23911
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23912
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23913
|
+
* @returns {VirtualEventRegistrationPredefinedQuestion}
|
|
23914
|
+
*/
|
|
23915
|
+
export declare function createVirtualEventRegistrationPredefinedQuestionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23592
23916
|
/**
|
|
23593
23917
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23594
23918
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23595
23919
|
* @returns {VirtualEventRegistrationQuestionAnswer}
|
|
23596
23920
|
*/
|
|
23597
23921
|
export declare function createVirtualEventRegistrationQuestionAnswerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23922
|
+
/**
|
|
23923
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23924
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23925
|
+
* @returns {VirtualEventRegistrationQuestionBaseCollectionResponse}
|
|
23926
|
+
*/
|
|
23927
|
+
export declare function createVirtualEventRegistrationQuestionBaseCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23928
|
+
/**
|
|
23929
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23930
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23931
|
+
* @returns {VirtualEventRegistrationQuestionBase}
|
|
23932
|
+
*/
|
|
23933
|
+
export declare function createVirtualEventRegistrationQuestionBaseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23598
23934
|
/**
|
|
23599
23935
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23600
23936
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23613,6 +23949,18 @@ export declare function createVirtualEventSessionFromDiscriminatorValue(parseNod
|
|
|
23613
23949
|
* @returns {VirtualEventsRoot}
|
|
23614
23950
|
*/
|
|
23615
23951
|
export declare function createVirtualEventsRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23952
|
+
/**
|
|
23953
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23954
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23955
|
+
* @returns {VirtualEventTownhallCollectionResponse}
|
|
23956
|
+
*/
|
|
23957
|
+
export declare function createVirtualEventTownhallCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23958
|
+
/**
|
|
23959
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23960
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23961
|
+
* @returns {VirtualEventTownhall}
|
|
23962
|
+
*/
|
|
23963
|
+
export declare function createVirtualEventTownhallFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23616
23964
|
/**
|
|
23617
23965
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23618
23966
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23625,6 +23973,12 @@ export declare function createVirtualEventWebinarCollectionResponseFromDiscrimin
|
|
|
23625
23973
|
* @returns {VirtualEventWebinar}
|
|
23626
23974
|
*/
|
|
23627
23975
|
export declare function createVirtualEventWebinarFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23976
|
+
/**
|
|
23977
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23978
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23979
|
+
* @returns {VirtualEventWebinarRegistrationConfiguration}
|
|
23980
|
+
*/
|
|
23981
|
+
export declare function createVirtualEventWebinarRegistrationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23628
23982
|
/**
|
|
23629
23983
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23630
23984
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -24756,6 +25110,10 @@ export interface CrossTenantAccessPolicyConfigurationDefault extends Entity, Par
|
|
|
24756
25110
|
* If true, the default configuration is set to the system default configuration. If false, the default settings are customized.
|
|
24757
25111
|
*/
|
|
24758
25112
|
isServiceDefault?: boolean;
|
|
25113
|
+
/**
|
|
25114
|
+
* Defines the default tenant restrictions configuration for users in your organization who access an external organization on your network or devices.
|
|
25115
|
+
*/
|
|
25116
|
+
tenantRestrictions?: CrossTenantAccessPolicyTenantRestrictions;
|
|
24759
25117
|
}
|
|
24760
25118
|
export interface CrossTenantAccessPolicyConfigurationPartner extends AdditionalDataHolder, BackedModel, Parsable {
|
|
24761
25119
|
/**
|
|
@@ -24810,6 +25168,10 @@ export interface CrossTenantAccessPolicyConfigurationPartner extends AdditionalD
|
|
|
24810
25168
|
* The tenant identifier for the partner Microsoft Entra organization. Read-only. Key.
|
|
24811
25169
|
*/
|
|
24812
25170
|
tenantId?: string;
|
|
25171
|
+
/**
|
|
25172
|
+
* Defines the partner-specific tenant restrictions configuration for users in your organization who access a partner organization using partner supplied identities on your network or devices.
|
|
25173
|
+
*/
|
|
25174
|
+
tenantRestrictions?: CrossTenantAccessPolicyTenantRestrictions;
|
|
24813
25175
|
}
|
|
24814
25176
|
export interface CrossTenantAccessPolicyConfigurationPartnerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
24815
25177
|
/**
|
|
@@ -24889,6 +25251,12 @@ export interface CrossTenantAccessPolicyTargetConfiguration extends AdditionalDa
|
|
|
24889
25251
|
}
|
|
24890
25252
|
export type CrossTenantAccessPolicyTargetConfigurationAccessType = (typeof CrossTenantAccessPolicyTargetConfigurationAccessTypeObject)[keyof typeof CrossTenantAccessPolicyTargetConfigurationAccessTypeObject];
|
|
24891
25253
|
export type CrossTenantAccessPolicyTargetType = (typeof CrossTenantAccessPolicyTargetTypeObject)[keyof typeof CrossTenantAccessPolicyTargetTypeObject];
|
|
25254
|
+
export interface CrossTenantAccessPolicyTenantRestrictions extends CrossTenantAccessPolicyB2BSetting, Parsable {
|
|
25255
|
+
/**
|
|
25256
|
+
* Defines the rule for filtering devices and whether devices that satisfy the rule should be allowed or blocked. This property isn't supported on the server side yet.
|
|
25257
|
+
*/
|
|
25258
|
+
devices?: DevicesFilter;
|
|
25259
|
+
}
|
|
24892
25260
|
export interface CrossTenantIdentitySyncPolicyPartner extends AdditionalDataHolder, BackedModel, Parsable {
|
|
24893
25261
|
/**
|
|
24894
25262
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -24951,6 +25319,8 @@ export interface CurrencyColumn extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
24951
25319
|
*/
|
|
24952
25320
|
odataType?: string;
|
|
24953
25321
|
}
|
|
25322
|
+
export interface CustomAppManagementConfiguration extends AppManagementConfiguration, Parsable {
|
|
25323
|
+
}
|
|
24954
25324
|
export interface CustomAuthenticationExtension extends CustomCalloutExtension, Parsable {
|
|
24955
25325
|
}
|
|
24956
25326
|
export interface CustomAuthenticationExtensionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
@@ -26634,6 +27004,11 @@ export declare function deserializeIntoAppLogCollectionRequest(appLogCollectionR
|
|
|
26634
27004
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26635
27005
|
*/
|
|
26636
27006
|
export declare function deserializeIntoAppLogCollectionRequestCollectionResponse(appLogCollectionRequestCollectionResponse?: Partial<AppLogCollectionRequestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27007
|
+
/**
|
|
27008
|
+
* The deserialization information for the current model
|
|
27009
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27010
|
+
*/
|
|
27011
|
+
export declare function deserializeIntoAppManagementApplicationConfiguration(appManagementApplicationConfiguration?: Partial<AppManagementApplicationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26637
27012
|
/**
|
|
26638
27013
|
* The deserialization information for the current model
|
|
26639
27014
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26649,6 +27024,11 @@ export declare function deserializeIntoAppManagementPolicy(appManagementPolicy?:
|
|
|
26649
27024
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26650
27025
|
*/
|
|
26651
27026
|
export declare function deserializeIntoAppManagementPolicyCollectionResponse(appManagementPolicyCollectionResponse?: Partial<AppManagementPolicyCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27027
|
+
/**
|
|
27028
|
+
* The deserialization information for the current model
|
|
27029
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27030
|
+
*/
|
|
27031
|
+
export declare function deserializeIntoAppManagementServicePrincipalConfiguration(appManagementServicePrincipalConfiguration?: Partial<AppManagementServicePrincipalConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26652
27032
|
/**
|
|
26653
27033
|
* The deserialization information for the current model
|
|
26654
27034
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27349,6 +27729,11 @@ export declare function deserializeIntoBookingCustomQuestion(bookingCustomQuesti
|
|
|
27349
27729
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27350
27730
|
*/
|
|
27351
27731
|
export declare function deserializeIntoBookingCustomQuestionCollectionResponse(bookingCustomQuestionCollectionResponse?: Partial<BookingCustomQuestionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27732
|
+
/**
|
|
27733
|
+
* The deserialization information for the current model
|
|
27734
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27735
|
+
*/
|
|
27736
|
+
export declare function deserializeIntoBookingPageSettings(bookingPageSettings?: Partial<BookingPageSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27352
27737
|
/**
|
|
27353
27738
|
* The deserialization information for the current model
|
|
27354
27739
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27364,6 +27749,16 @@ export declare function deserializeIntoBookingQuestionAssignment(bookingQuestion
|
|
|
27364
27749
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27365
27750
|
*/
|
|
27366
27751
|
export declare function deserializeIntoBookingReminder(bookingReminder?: Partial<BookingReminder> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27752
|
+
/**
|
|
27753
|
+
* The deserialization information for the current model
|
|
27754
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27755
|
+
*/
|
|
27756
|
+
export declare function deserializeIntoBookingsAvailability(bookingsAvailability?: Partial<BookingsAvailability> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27757
|
+
/**
|
|
27758
|
+
* The deserialization information for the current model
|
|
27759
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27760
|
+
*/
|
|
27761
|
+
export declare function deserializeIntoBookingsAvailabilityWindow(bookingsAvailabilityWindow?: Partial<BookingsAvailabilityWindow> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27367
27762
|
/**
|
|
27368
27763
|
* The deserialization information for the current model
|
|
27369
27764
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -28439,6 +28834,11 @@ export declare function deserializeIntoCrossTenantAccessPolicyTarget(crossTenant
|
|
|
28439
28834
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28440
28835
|
*/
|
|
28441
28836
|
export declare function deserializeIntoCrossTenantAccessPolicyTargetConfiguration(crossTenantAccessPolicyTargetConfiguration?: Partial<CrossTenantAccessPolicyTargetConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28837
|
+
/**
|
|
28838
|
+
* The deserialization information for the current model
|
|
28839
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28840
|
+
*/
|
|
28841
|
+
export declare function deserializeIntoCrossTenantAccessPolicyTenantRestrictions(crossTenantAccessPolicyTenantRestrictions?: Partial<CrossTenantAccessPolicyTenantRestrictions> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28442
28842
|
/**
|
|
28443
28843
|
* The deserialization information for the current model
|
|
28444
28844
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -28454,6 +28854,11 @@ export declare function deserializeIntoCrossTenantUserSyncInbound(crossTenantUse
|
|
|
28454
28854
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28455
28855
|
*/
|
|
28456
28856
|
export declare function deserializeIntoCurrencyColumn(currencyColumn?: Partial<CurrencyColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28857
|
+
/**
|
|
28858
|
+
* The deserialization information for the current model
|
|
28859
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28860
|
+
*/
|
|
28861
|
+
export declare function deserializeIntoCustomAppManagementConfiguration(customAppManagementConfiguration?: Partial<CustomAppManagementConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28457
28862
|
/**
|
|
28458
28863
|
* The deserialization information for the current model
|
|
28459
28864
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29149,6 +29554,11 @@ export declare function deserializeIntoDeviceRegistrationMembership(deviceRegist
|
|
|
29149
29554
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29150
29555
|
*/
|
|
29151
29556
|
export declare function deserializeIntoDeviceRegistrationPolicy(deviceRegistrationPolicy?: Partial<DeviceRegistrationPolicy> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29557
|
+
/**
|
|
29558
|
+
* The deserialization information for the current model
|
|
29559
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29560
|
+
*/
|
|
29561
|
+
export declare function deserializeIntoDevicesFilter(devicesFilter?: Partial<DevicesFilter> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29152
29562
|
/**
|
|
29153
29563
|
* The deserialization information for the current model
|
|
29154
29564
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30434,6 +30844,11 @@ export declare function deserializeIntoInitiator(initiator?: Partial<Initiator>
|
|
|
30434
30844
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30435
30845
|
*/
|
|
30436
30846
|
export declare function deserializeIntoInsightIdentity(insightIdentity?: Partial<InsightIdentity> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30847
|
+
/**
|
|
30848
|
+
* The deserialization information for the current model
|
|
30849
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30850
|
+
*/
|
|
30851
|
+
export declare function deserializeIntoInsightsSettings(insightsSettings?: Partial<InsightsSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30437
30852
|
/**
|
|
30438
30853
|
* The deserialization information for the current model
|
|
30439
30854
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30759,6 +31174,11 @@ export declare function deserializeIntoItemAttachment(itemAttachment?: Partial<I
|
|
|
30759
31174
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30760
31175
|
*/
|
|
30761
31176
|
export declare function deserializeIntoItemBody(itemBody?: Partial<ItemBody> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31177
|
+
/**
|
|
31178
|
+
* The deserialization information for the current model
|
|
31179
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31180
|
+
*/
|
|
31181
|
+
export declare function deserializeIntoItemInsights(itemInsights?: Partial<ItemInsights> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30762
31182
|
/**
|
|
30763
31183
|
* The deserialization information for the current model
|
|
30764
31184
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33869,6 +34289,16 @@ export declare function deserializeIntoServiceProvisioningErrorCollectionRespons
|
|
|
33869
34289
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33870
34290
|
*/
|
|
33871
34291
|
export declare function deserializeIntoServiceProvisioningXmlError(serviceProvisioningXmlError?: Partial<ServiceProvisioningXmlError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34292
|
+
/**
|
|
34293
|
+
* The deserialization information for the current model
|
|
34294
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34295
|
+
*/
|
|
34296
|
+
export declare function deserializeIntoServiceStorageQuotaBreakdown(serviceStorageQuotaBreakdown?: Partial<ServiceStorageQuotaBreakdown> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34297
|
+
/**
|
|
34298
|
+
* The deserialization information for the current model
|
|
34299
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34300
|
+
*/
|
|
34301
|
+
export declare function deserializeIntoServiceStorageQuotaBreakdownCollectionResponse(serviceStorageQuotaBreakdownCollectionResponse?: Partial<ServiceStorageQuotaBreakdownCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33872
34302
|
/**
|
|
33873
34303
|
* The deserialization information for the current model
|
|
33874
34304
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34274,6 +34704,16 @@ export declare function deserializeIntoStorage(storage?: Partial<Storage> | unde
|
|
|
34274
34704
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34275
34705
|
*/
|
|
34276
34706
|
export declare function deserializeIntoStoragePlanInformation(storagePlanInformation?: Partial<StoragePlanInformation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34707
|
+
/**
|
|
34708
|
+
* The deserialization information for the current model
|
|
34709
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34710
|
+
*/
|
|
34711
|
+
export declare function deserializeIntoStorageQuotaBreakdown(storageQuotaBreakdown?: Partial<StorageQuotaBreakdown> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34712
|
+
/**
|
|
34713
|
+
* The deserialization information for the current model
|
|
34714
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34715
|
+
*/
|
|
34716
|
+
export declare function deserializeIntoStorageSettings(storageSettings?: Partial<StorageSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34277
34717
|
/**
|
|
34278
34718
|
* The deserialization information for the current model
|
|
34279
34719
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35339,6 +35779,11 @@ export declare function deserializeIntoUnifiedRoleScheduleBase(unifiedRoleSchedu
|
|
|
35339
35779
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35340
35780
|
*/
|
|
35341
35781
|
export declare function deserializeIntoUnifiedRoleScheduleInstanceBase(unifiedRoleScheduleInstanceBase?: Partial<UnifiedRoleScheduleInstanceBase> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35782
|
+
/**
|
|
35783
|
+
* The deserialization information for the current model
|
|
35784
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35785
|
+
*/
|
|
35786
|
+
export declare function deserializeIntoUnifiedStorageQuota(unifiedStorageQuota?: Partial<UnifiedStorageQuota> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35342
35787
|
/**
|
|
35343
35788
|
* The deserialization information for the current model
|
|
35344
35789
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35724,6 +36169,11 @@ export declare function deserializeIntoUserFlowLanguagePageCollectionResponse(us
|
|
|
35724
36169
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35725
36170
|
*/
|
|
35726
36171
|
export declare function deserializeIntoUserIdentity(userIdentity?: Partial<UserIdentity> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36172
|
+
/**
|
|
36173
|
+
* The deserialization information for the current model
|
|
36174
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36175
|
+
*/
|
|
36176
|
+
export declare function deserializeIntoUserInsightsSettings(userInsightsSettings?: Partial<UserInsightsSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35727
36177
|
/**
|
|
35728
36178
|
* The deserialization information for the current model
|
|
35729
36179
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35809,6 +36259,11 @@ export declare function deserializeIntoUserSimulationDetails(userSimulationDetai
|
|
|
35809
36259
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35810
36260
|
*/
|
|
35811
36261
|
export declare function deserializeIntoUserSimulationEventInfo(userSimulationEventInfo?: Partial<UserSimulationEventInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36262
|
+
/**
|
|
36263
|
+
* The deserialization information for the current model
|
|
36264
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36265
|
+
*/
|
|
36266
|
+
export declare function deserializeIntoUserStorage(userStorage?: Partial<UserStorage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35812
36267
|
/**
|
|
35813
36268
|
* The deserialization information for the current model
|
|
35814
36269
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35864,6 +36319,26 @@ export declare function deserializeIntoVirtualEvent(virtualEvent?: Partial<Virtu
|
|
|
35864
36319
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35865
36320
|
*/
|
|
35866
36321
|
export declare function deserializeIntoVirtualEventCollectionResponse(virtualEventCollectionResponse?: Partial<VirtualEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36322
|
+
/**
|
|
36323
|
+
* The deserialization information for the current model
|
|
36324
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36325
|
+
*/
|
|
36326
|
+
export declare function deserializeIntoVirtualEventPresenter(virtualEventPresenter?: Partial<VirtualEventPresenter> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36327
|
+
/**
|
|
36328
|
+
* The deserialization information for the current model
|
|
36329
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36330
|
+
*/
|
|
36331
|
+
export declare function deserializeIntoVirtualEventPresenterCollectionResponse(virtualEventPresenterCollectionResponse?: Partial<VirtualEventPresenterCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36332
|
+
/**
|
|
36333
|
+
* The deserialization information for the current model
|
|
36334
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36335
|
+
*/
|
|
36336
|
+
export declare function deserializeIntoVirtualEventPresenterDetails(virtualEventPresenterDetails?: Partial<VirtualEventPresenterDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36337
|
+
/**
|
|
36338
|
+
* The deserialization information for the current model
|
|
36339
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36340
|
+
*/
|
|
36341
|
+
export declare function deserializeIntoVirtualEventPresenterInfo(virtualEventPresenterInfo?: Partial<VirtualEventPresenterInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35867
36342
|
/**
|
|
35868
36343
|
* The deserialization information for the current model
|
|
35869
36344
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35874,11 +36349,36 @@ export declare function deserializeIntoVirtualEventRegistration(virtualEventRegi
|
|
|
35874
36349
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35875
36350
|
*/
|
|
35876
36351
|
export declare function deserializeIntoVirtualEventRegistrationCollectionResponse(virtualEventRegistrationCollectionResponse?: Partial<VirtualEventRegistrationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36352
|
+
/**
|
|
36353
|
+
* The deserialization information for the current model
|
|
36354
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36355
|
+
*/
|
|
36356
|
+
export declare function deserializeIntoVirtualEventRegistrationConfiguration(virtualEventRegistrationConfiguration?: Partial<VirtualEventRegistrationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36357
|
+
/**
|
|
36358
|
+
* The deserialization information for the current model
|
|
36359
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36360
|
+
*/
|
|
36361
|
+
export declare function deserializeIntoVirtualEventRegistrationCustomQuestion(virtualEventRegistrationCustomQuestion?: Partial<VirtualEventRegistrationCustomQuestion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36362
|
+
/**
|
|
36363
|
+
* The deserialization information for the current model
|
|
36364
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36365
|
+
*/
|
|
36366
|
+
export declare function deserializeIntoVirtualEventRegistrationPredefinedQuestion(virtualEventRegistrationPredefinedQuestion?: Partial<VirtualEventRegistrationPredefinedQuestion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35877
36367
|
/**
|
|
35878
36368
|
* The deserialization information for the current model
|
|
35879
36369
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35880
36370
|
*/
|
|
35881
36371
|
export declare function deserializeIntoVirtualEventRegistrationQuestionAnswer(virtualEventRegistrationQuestionAnswer?: Partial<VirtualEventRegistrationQuestionAnswer> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36372
|
+
/**
|
|
36373
|
+
* The deserialization information for the current model
|
|
36374
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36375
|
+
*/
|
|
36376
|
+
export declare function deserializeIntoVirtualEventRegistrationQuestionBase(virtualEventRegistrationQuestionBase?: Partial<VirtualEventRegistrationQuestionBase> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36377
|
+
/**
|
|
36378
|
+
* The deserialization information for the current model
|
|
36379
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36380
|
+
*/
|
|
36381
|
+
export declare function deserializeIntoVirtualEventRegistrationQuestionBaseCollectionResponse(virtualEventRegistrationQuestionBaseCollectionResponse?: Partial<VirtualEventRegistrationQuestionBaseCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35882
36382
|
/**
|
|
35883
36383
|
* The deserialization information for the current model
|
|
35884
36384
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35894,6 +36394,16 @@ export declare function deserializeIntoVirtualEventSessionCollectionResponse(vir
|
|
|
35894
36394
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35895
36395
|
*/
|
|
35896
36396
|
export declare function deserializeIntoVirtualEventsRoot(virtualEventsRoot?: Partial<VirtualEventsRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36397
|
+
/**
|
|
36398
|
+
* The deserialization information for the current model
|
|
36399
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36400
|
+
*/
|
|
36401
|
+
export declare function deserializeIntoVirtualEventTownhall(virtualEventTownhall?: Partial<VirtualEventTownhall> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36402
|
+
/**
|
|
36403
|
+
* The deserialization information for the current model
|
|
36404
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36405
|
+
*/
|
|
36406
|
+
export declare function deserializeIntoVirtualEventTownhallCollectionResponse(virtualEventTownhallCollectionResponse?: Partial<VirtualEventTownhallCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35897
36407
|
/**
|
|
35898
36408
|
* The deserialization information for the current model
|
|
35899
36409
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35904,6 +36414,11 @@ export declare function deserializeIntoVirtualEventWebinar(virtualEventWebinar?:
|
|
|
35904
36414
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35905
36415
|
*/
|
|
35906
36416
|
export declare function deserializeIntoVirtualEventWebinarCollectionResponse(virtualEventWebinarCollectionResponse?: Partial<VirtualEventWebinarCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36417
|
+
/**
|
|
36418
|
+
* The deserialization information for the current model
|
|
36419
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36420
|
+
*/
|
|
36421
|
+
export declare function deserializeIntoVirtualEventWebinarRegistrationConfiguration(virtualEventWebinarRegistrationConfiguration?: Partial<VirtualEventWebinarRegistrationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35907
36422
|
/**
|
|
35908
36423
|
* The deserialization information for the current model
|
|
35909
36424
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -39208,6 +39723,28 @@ export interface DeviceRegistrationPolicy extends Entity, Parsable {
|
|
|
39208
39723
|
userDeviceQuota?: number;
|
|
39209
39724
|
}
|
|
39210
39725
|
export type DeviceRegistrationState = (typeof DeviceRegistrationStateObject)[keyof typeof DeviceRegistrationStateObject];
|
|
39726
|
+
export interface DevicesFilter extends AdditionalDataHolder, BackedModel, Parsable {
|
|
39727
|
+
/**
|
|
39728
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
39729
|
+
*/
|
|
39730
|
+
additionalData?: Record<string, unknown>;
|
|
39731
|
+
/**
|
|
39732
|
+
* Stores model information.
|
|
39733
|
+
*/
|
|
39734
|
+
backingStoreEnabled?: boolean;
|
|
39735
|
+
/**
|
|
39736
|
+
* Determines whether devices that satisfy the rule should be allowed or blocked. The possible values are: allowed, blocked, unknownFutureValue.
|
|
39737
|
+
*/
|
|
39738
|
+
mode?: CrossTenantAccessPolicyTargetConfigurationAccessType;
|
|
39739
|
+
/**
|
|
39740
|
+
* The OdataType property
|
|
39741
|
+
*/
|
|
39742
|
+
odataType?: string;
|
|
39743
|
+
/**
|
|
39744
|
+
* Defines the rule to filter the devices. For example, device.deviceAttribute2 -eq 'PrivilegedAccessWorkstation'.
|
|
39745
|
+
*/
|
|
39746
|
+
rule?: string;
|
|
39747
|
+
}
|
|
39211
39748
|
export type DeviceThreatProtectionLevel = (typeof DeviceThreatProtectionLevelObject)[keyof typeof DeviceThreatProtectionLevelObject];
|
|
39212
39749
|
export type DiagnosticDataSubmissionMode = (typeof DiagnosticDataSubmissionModeObject)[keyof typeof DiagnosticDataSubmissionModeObject];
|
|
39213
39750
|
export interface Dictionary extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -44261,6 +44798,16 @@ export interface InsightIdentity extends AdditionalDataHolder, BackedModel, Pars
|
|
|
44261
44798
|
*/
|
|
44262
44799
|
odataType?: string;
|
|
44263
44800
|
}
|
|
44801
|
+
export interface InsightsSettings extends Entity, Parsable {
|
|
44802
|
+
/**
|
|
44803
|
+
* The ID of a Microsoft Entra group, of which the specified type of insights are disabled for its members. The default value is null. Optional.
|
|
44804
|
+
*/
|
|
44805
|
+
disabledForGroup?: string;
|
|
44806
|
+
/**
|
|
44807
|
+
* true if insights of the specified type are enabled for the organization; false if insights of the specified type are disabled for all users without exceptions. The default value is true. Optional.
|
|
44808
|
+
*/
|
|
44809
|
+
isEnabledInOrganization?: boolean;
|
|
44810
|
+
}
|
|
44264
44811
|
/**
|
|
44265
44812
|
* The value in an user experience analytics insight.
|
|
44266
44813
|
*/
|
|
@@ -46050,6 +46597,8 @@ export interface ItemBody extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
46050
46597
|
*/
|
|
46051
46598
|
odataType?: string;
|
|
46052
46599
|
}
|
|
46600
|
+
export interface ItemInsights extends OfficeGraphInsights, Parsable {
|
|
46601
|
+
}
|
|
46053
46602
|
export interface ItemPreviewInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46054
46603
|
/**
|
|
46055
46604
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -50789,6 +51338,7 @@ export interface NamedLocationCollectionResponse extends BaseCollectionPaginatio
|
|
|
50789
51338
|
*/
|
|
50790
51339
|
value?: NamedLocation[];
|
|
50791
51340
|
}
|
|
51341
|
+
export type NativeAuthenticationApisEnabled = (typeof NativeAuthenticationApisEnabledObject)[keyof typeof NativeAuthenticationApisEnabledObject];
|
|
50792
51342
|
export interface NetworkConnection extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50793
51343
|
/**
|
|
50794
51344
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -53454,6 +54004,10 @@ export interface PendingOperations extends AdditionalDataHolder, BackedModel, Pa
|
|
|
53454
54004
|
pendingContentUpdate?: PendingContentUpdate;
|
|
53455
54005
|
}
|
|
53456
54006
|
export interface PeopleAdminSettings extends Entity, Parsable {
|
|
54007
|
+
/**
|
|
54008
|
+
* Represents administrator settings that manage the support for item insights in an organization.
|
|
54009
|
+
*/
|
|
54010
|
+
itemInsights?: InsightsSettings;
|
|
53457
54011
|
/**
|
|
53458
54012
|
* Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card.
|
|
53459
54013
|
*/
|
|
@@ -60485,6 +61039,11 @@ export declare function serializeAppLogCollectionRequest(writer: SerializationWr
|
|
|
60485
61039
|
* @param writer Serialization writer to use to serialize this model
|
|
60486
61040
|
*/
|
|
60487
61041
|
export declare function serializeAppLogCollectionRequestCollectionResponse(writer: SerializationWriter, appLogCollectionRequestCollectionResponse?: Partial<AppLogCollectionRequestCollectionResponse> | undefined): void;
|
|
61042
|
+
/**
|
|
61043
|
+
* Serializes information the current object
|
|
61044
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61045
|
+
*/
|
|
61046
|
+
export declare function serializeAppManagementApplicationConfiguration(writer: SerializationWriter, appManagementApplicationConfiguration?: Partial<AppManagementApplicationConfiguration> | undefined): void;
|
|
60488
61047
|
/**
|
|
60489
61048
|
* Serializes information the current object
|
|
60490
61049
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60500,6 +61059,11 @@ export declare function serializeAppManagementPolicy(writer: SerializationWriter
|
|
|
60500
61059
|
* @param writer Serialization writer to use to serialize this model
|
|
60501
61060
|
*/
|
|
60502
61061
|
export declare function serializeAppManagementPolicyCollectionResponse(writer: SerializationWriter, appManagementPolicyCollectionResponse?: Partial<AppManagementPolicyCollectionResponse> | undefined): void;
|
|
61062
|
+
/**
|
|
61063
|
+
* Serializes information the current object
|
|
61064
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61065
|
+
*/
|
|
61066
|
+
export declare function serializeAppManagementServicePrincipalConfiguration(writer: SerializationWriter, appManagementServicePrincipalConfiguration?: Partial<AppManagementServicePrincipalConfiguration> | undefined): void;
|
|
60503
61067
|
/**
|
|
60504
61068
|
* Serializes information the current object
|
|
60505
61069
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61200,6 +61764,11 @@ export declare function serializeBookingCustomQuestion(writer: SerializationWrit
|
|
|
61200
61764
|
* @param writer Serialization writer to use to serialize this model
|
|
61201
61765
|
*/
|
|
61202
61766
|
export declare function serializeBookingCustomQuestionCollectionResponse(writer: SerializationWriter, bookingCustomQuestionCollectionResponse?: Partial<BookingCustomQuestionCollectionResponse> | undefined): void;
|
|
61767
|
+
/**
|
|
61768
|
+
* Serializes information the current object
|
|
61769
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61770
|
+
*/
|
|
61771
|
+
export declare function serializeBookingPageSettings(writer: SerializationWriter, bookingPageSettings?: Partial<BookingPageSettings> | undefined): void;
|
|
61203
61772
|
/**
|
|
61204
61773
|
* Serializes information the current object
|
|
61205
61774
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61215,6 +61784,16 @@ export declare function serializeBookingQuestionAssignment(writer: Serialization
|
|
|
61215
61784
|
* @param writer Serialization writer to use to serialize this model
|
|
61216
61785
|
*/
|
|
61217
61786
|
export declare function serializeBookingReminder(writer: SerializationWriter, bookingReminder?: Partial<BookingReminder> | undefined): void;
|
|
61787
|
+
/**
|
|
61788
|
+
* Serializes information the current object
|
|
61789
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61790
|
+
*/
|
|
61791
|
+
export declare function serializeBookingsAvailability(writer: SerializationWriter, bookingsAvailability?: Partial<BookingsAvailability> | undefined): void;
|
|
61792
|
+
/**
|
|
61793
|
+
* Serializes information the current object
|
|
61794
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61795
|
+
*/
|
|
61796
|
+
export declare function serializeBookingsAvailabilityWindow(writer: SerializationWriter, bookingsAvailabilityWindow?: Partial<BookingsAvailabilityWindow> | undefined): void;
|
|
61218
61797
|
/**
|
|
61219
61798
|
* Serializes information the current object
|
|
61220
61799
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -62290,6 +62869,11 @@ export declare function serializeCrossTenantAccessPolicyTarget(writer: Serializa
|
|
|
62290
62869
|
* @param writer Serialization writer to use to serialize this model
|
|
62291
62870
|
*/
|
|
62292
62871
|
export declare function serializeCrossTenantAccessPolicyTargetConfiguration(writer: SerializationWriter, crossTenantAccessPolicyTargetConfiguration?: Partial<CrossTenantAccessPolicyTargetConfiguration> | undefined): void;
|
|
62872
|
+
/**
|
|
62873
|
+
* Serializes information the current object
|
|
62874
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62875
|
+
*/
|
|
62876
|
+
export declare function serializeCrossTenantAccessPolicyTenantRestrictions(writer: SerializationWriter, crossTenantAccessPolicyTenantRestrictions?: Partial<CrossTenantAccessPolicyTenantRestrictions> | undefined): void;
|
|
62293
62877
|
/**
|
|
62294
62878
|
* Serializes information the current object
|
|
62295
62879
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -62305,6 +62889,11 @@ export declare function serializeCrossTenantUserSyncInbound(writer: Serializatio
|
|
|
62305
62889
|
* @param writer Serialization writer to use to serialize this model
|
|
62306
62890
|
*/
|
|
62307
62891
|
export declare function serializeCurrencyColumn(writer: SerializationWriter, currencyColumn?: Partial<CurrencyColumn> | undefined): void;
|
|
62892
|
+
/**
|
|
62893
|
+
* Serializes information the current object
|
|
62894
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62895
|
+
*/
|
|
62896
|
+
export declare function serializeCustomAppManagementConfiguration(writer: SerializationWriter, customAppManagementConfiguration?: Partial<CustomAppManagementConfiguration> | undefined): void;
|
|
62308
62897
|
/**
|
|
62309
62898
|
* Serializes information the current object
|
|
62310
62899
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63000,6 +63589,11 @@ export declare function serializeDeviceRegistrationMembership(writer: Serializat
|
|
|
63000
63589
|
* @param writer Serialization writer to use to serialize this model
|
|
63001
63590
|
*/
|
|
63002
63591
|
export declare function serializeDeviceRegistrationPolicy(writer: SerializationWriter, deviceRegistrationPolicy?: Partial<DeviceRegistrationPolicy> | undefined): void;
|
|
63592
|
+
/**
|
|
63593
|
+
* Serializes information the current object
|
|
63594
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63595
|
+
*/
|
|
63596
|
+
export declare function serializeDevicesFilter(writer: SerializationWriter, devicesFilter?: Partial<DevicesFilter> | undefined): void;
|
|
63003
63597
|
/**
|
|
63004
63598
|
* Serializes information the current object
|
|
63005
63599
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64285,6 +64879,11 @@ export declare function serializeInitiator(writer: SerializationWriter, initiato
|
|
|
64285
64879
|
* @param writer Serialization writer to use to serialize this model
|
|
64286
64880
|
*/
|
|
64287
64881
|
export declare function serializeInsightIdentity(writer: SerializationWriter, insightIdentity?: Partial<InsightIdentity> | undefined): void;
|
|
64882
|
+
/**
|
|
64883
|
+
* Serializes information the current object
|
|
64884
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64885
|
+
*/
|
|
64886
|
+
export declare function serializeInsightsSettings(writer: SerializationWriter, insightsSettings?: Partial<InsightsSettings> | undefined): void;
|
|
64288
64887
|
/**
|
|
64289
64888
|
* Serializes information the current object
|
|
64290
64889
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64610,6 +65209,11 @@ export declare function serializeItemAttachment(writer: SerializationWriter, ite
|
|
|
64610
65209
|
* @param writer Serialization writer to use to serialize this model
|
|
64611
65210
|
*/
|
|
64612
65211
|
export declare function serializeItemBody(writer: SerializationWriter, itemBody?: Partial<ItemBody> | undefined): void;
|
|
65212
|
+
/**
|
|
65213
|
+
* Serializes information the current object
|
|
65214
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65215
|
+
*/
|
|
65216
|
+
export declare function serializeItemInsights(writer: SerializationWriter, itemInsights?: Partial<ItemInsights> | undefined): void;
|
|
64613
65217
|
/**
|
|
64614
65218
|
* Serializes information the current object
|
|
64615
65219
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -67720,6 +68324,16 @@ export declare function serializeServiceProvisioningErrorCollectionResponse(writ
|
|
|
67720
68324
|
* @param writer Serialization writer to use to serialize this model
|
|
67721
68325
|
*/
|
|
67722
68326
|
export declare function serializeServiceProvisioningXmlError(writer: SerializationWriter, serviceProvisioningXmlError?: Partial<ServiceProvisioningXmlError> | undefined): void;
|
|
68327
|
+
/**
|
|
68328
|
+
* Serializes information the current object
|
|
68329
|
+
* @param writer Serialization writer to use to serialize this model
|
|
68330
|
+
*/
|
|
68331
|
+
export declare function serializeServiceStorageQuotaBreakdown(writer: SerializationWriter, serviceStorageQuotaBreakdown?: Partial<ServiceStorageQuotaBreakdown> | undefined): void;
|
|
68332
|
+
/**
|
|
68333
|
+
* Serializes information the current object
|
|
68334
|
+
* @param writer Serialization writer to use to serialize this model
|
|
68335
|
+
*/
|
|
68336
|
+
export declare function serializeServiceStorageQuotaBreakdownCollectionResponse(writer: SerializationWriter, serviceStorageQuotaBreakdownCollectionResponse?: Partial<ServiceStorageQuotaBreakdownCollectionResponse> | undefined): void;
|
|
67723
68337
|
/**
|
|
67724
68338
|
* Serializes information the current object
|
|
67725
68339
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -68125,6 +68739,16 @@ export declare function serializeStorage(writer: SerializationWriter, storage?:
|
|
|
68125
68739
|
* @param writer Serialization writer to use to serialize this model
|
|
68126
68740
|
*/
|
|
68127
68741
|
export declare function serializeStoragePlanInformation(writer: SerializationWriter, storagePlanInformation?: Partial<StoragePlanInformation> | undefined): void;
|
|
68742
|
+
/**
|
|
68743
|
+
* Serializes information the current object
|
|
68744
|
+
* @param writer Serialization writer to use to serialize this model
|
|
68745
|
+
*/
|
|
68746
|
+
export declare function serializeStorageQuotaBreakdown(writer: SerializationWriter, storageQuotaBreakdown?: Partial<StorageQuotaBreakdown> | undefined): void;
|
|
68747
|
+
/**
|
|
68748
|
+
* Serializes information the current object
|
|
68749
|
+
* @param writer Serialization writer to use to serialize this model
|
|
68750
|
+
*/
|
|
68751
|
+
export declare function serializeStorageSettings(writer: SerializationWriter, storageSettings?: Partial<StorageSettings> | undefined): void;
|
|
68128
68752
|
/**
|
|
68129
68753
|
* Serializes information the current object
|
|
68130
68754
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69190,6 +69814,11 @@ export declare function serializeUnifiedRoleScheduleBase(writer: SerializationWr
|
|
|
69190
69814
|
* @param writer Serialization writer to use to serialize this model
|
|
69191
69815
|
*/
|
|
69192
69816
|
export declare function serializeUnifiedRoleScheduleInstanceBase(writer: SerializationWriter, unifiedRoleScheduleInstanceBase?: Partial<UnifiedRoleScheduleInstanceBase> | undefined): void;
|
|
69817
|
+
/**
|
|
69818
|
+
* Serializes information the current object
|
|
69819
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69820
|
+
*/
|
|
69821
|
+
export declare function serializeUnifiedStorageQuota(writer: SerializationWriter, unifiedStorageQuota?: Partial<UnifiedStorageQuota> | undefined): void;
|
|
69193
69822
|
/**
|
|
69194
69823
|
* Serializes information the current object
|
|
69195
69824
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69575,6 +70204,11 @@ export declare function serializeUserFlowLanguagePageCollectionResponse(writer:
|
|
|
69575
70204
|
* @param writer Serialization writer to use to serialize this model
|
|
69576
70205
|
*/
|
|
69577
70206
|
export declare function serializeUserIdentity(writer: SerializationWriter, userIdentity?: Partial<UserIdentity> | undefined): void;
|
|
70207
|
+
/**
|
|
70208
|
+
* Serializes information the current object
|
|
70209
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70210
|
+
*/
|
|
70211
|
+
export declare function serializeUserInsightsSettings(writer: SerializationWriter, userInsightsSettings?: Partial<UserInsightsSettings> | undefined): void;
|
|
69578
70212
|
/**
|
|
69579
70213
|
* Serializes information the current object
|
|
69580
70214
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69660,6 +70294,11 @@ export declare function serializeUserSimulationDetails(writer: SerializationWrit
|
|
|
69660
70294
|
* @param writer Serialization writer to use to serialize this model
|
|
69661
70295
|
*/
|
|
69662
70296
|
export declare function serializeUserSimulationEventInfo(writer: SerializationWriter, userSimulationEventInfo?: Partial<UserSimulationEventInfo> | undefined): void;
|
|
70297
|
+
/**
|
|
70298
|
+
* Serializes information the current object
|
|
70299
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70300
|
+
*/
|
|
70301
|
+
export declare function serializeUserStorage(writer: SerializationWriter, userStorage?: Partial<UserStorage> | undefined): void;
|
|
69663
70302
|
/**
|
|
69664
70303
|
* Serializes information the current object
|
|
69665
70304
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69715,6 +70354,26 @@ export declare function serializeVirtualEvent(writer: SerializationWriter, virtu
|
|
|
69715
70354
|
* @param writer Serialization writer to use to serialize this model
|
|
69716
70355
|
*/
|
|
69717
70356
|
export declare function serializeVirtualEventCollectionResponse(writer: SerializationWriter, virtualEventCollectionResponse?: Partial<VirtualEventCollectionResponse> | undefined): void;
|
|
70357
|
+
/**
|
|
70358
|
+
* Serializes information the current object
|
|
70359
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70360
|
+
*/
|
|
70361
|
+
export declare function serializeVirtualEventPresenter(writer: SerializationWriter, virtualEventPresenter?: Partial<VirtualEventPresenter> | undefined): void;
|
|
70362
|
+
/**
|
|
70363
|
+
* Serializes information the current object
|
|
70364
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70365
|
+
*/
|
|
70366
|
+
export declare function serializeVirtualEventPresenterCollectionResponse(writer: SerializationWriter, virtualEventPresenterCollectionResponse?: Partial<VirtualEventPresenterCollectionResponse> | undefined): void;
|
|
70367
|
+
/**
|
|
70368
|
+
* Serializes information the current object
|
|
70369
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70370
|
+
*/
|
|
70371
|
+
export declare function serializeVirtualEventPresenterDetails(writer: SerializationWriter, virtualEventPresenterDetails?: Partial<VirtualEventPresenterDetails> | undefined): void;
|
|
70372
|
+
/**
|
|
70373
|
+
* Serializes information the current object
|
|
70374
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70375
|
+
*/
|
|
70376
|
+
export declare function serializeVirtualEventPresenterInfo(writer: SerializationWriter, virtualEventPresenterInfo?: Partial<VirtualEventPresenterInfo> | undefined): void;
|
|
69718
70377
|
/**
|
|
69719
70378
|
* Serializes information the current object
|
|
69720
70379
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69725,11 +70384,36 @@ export declare function serializeVirtualEventRegistration(writer: SerializationW
|
|
|
69725
70384
|
* @param writer Serialization writer to use to serialize this model
|
|
69726
70385
|
*/
|
|
69727
70386
|
export declare function serializeVirtualEventRegistrationCollectionResponse(writer: SerializationWriter, virtualEventRegistrationCollectionResponse?: Partial<VirtualEventRegistrationCollectionResponse> | undefined): void;
|
|
70387
|
+
/**
|
|
70388
|
+
* Serializes information the current object
|
|
70389
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70390
|
+
*/
|
|
70391
|
+
export declare function serializeVirtualEventRegistrationConfiguration(writer: SerializationWriter, virtualEventRegistrationConfiguration?: Partial<VirtualEventRegistrationConfiguration> | undefined): void;
|
|
70392
|
+
/**
|
|
70393
|
+
* Serializes information the current object
|
|
70394
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70395
|
+
*/
|
|
70396
|
+
export declare function serializeVirtualEventRegistrationCustomQuestion(writer: SerializationWriter, virtualEventRegistrationCustomQuestion?: Partial<VirtualEventRegistrationCustomQuestion> | undefined): void;
|
|
70397
|
+
/**
|
|
70398
|
+
* Serializes information the current object
|
|
70399
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70400
|
+
*/
|
|
70401
|
+
export declare function serializeVirtualEventRegistrationPredefinedQuestion(writer: SerializationWriter, virtualEventRegistrationPredefinedQuestion?: Partial<VirtualEventRegistrationPredefinedQuestion> | undefined): void;
|
|
69728
70402
|
/**
|
|
69729
70403
|
* Serializes information the current object
|
|
69730
70404
|
* @param writer Serialization writer to use to serialize this model
|
|
69731
70405
|
*/
|
|
69732
70406
|
export declare function serializeVirtualEventRegistrationQuestionAnswer(writer: SerializationWriter, virtualEventRegistrationQuestionAnswer?: Partial<VirtualEventRegistrationQuestionAnswer> | undefined): void;
|
|
70407
|
+
/**
|
|
70408
|
+
* Serializes information the current object
|
|
70409
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70410
|
+
*/
|
|
70411
|
+
export declare function serializeVirtualEventRegistrationQuestionBase(writer: SerializationWriter, virtualEventRegistrationQuestionBase?: Partial<VirtualEventRegistrationQuestionBase> | undefined): void;
|
|
70412
|
+
/**
|
|
70413
|
+
* Serializes information the current object
|
|
70414
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70415
|
+
*/
|
|
70416
|
+
export declare function serializeVirtualEventRegistrationQuestionBaseCollectionResponse(writer: SerializationWriter, virtualEventRegistrationQuestionBaseCollectionResponse?: Partial<VirtualEventRegistrationQuestionBaseCollectionResponse> | undefined): void;
|
|
69733
70417
|
/**
|
|
69734
70418
|
* Serializes information the current object
|
|
69735
70419
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69745,6 +70429,16 @@ export declare function serializeVirtualEventSessionCollectionResponse(writer: S
|
|
|
69745
70429
|
* @param writer Serialization writer to use to serialize this model
|
|
69746
70430
|
*/
|
|
69747
70431
|
export declare function serializeVirtualEventsRoot(writer: SerializationWriter, virtualEventsRoot?: Partial<VirtualEventsRoot> | undefined): void;
|
|
70432
|
+
/**
|
|
70433
|
+
* Serializes information the current object
|
|
70434
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70435
|
+
*/
|
|
70436
|
+
export declare function serializeVirtualEventTownhall(writer: SerializationWriter, virtualEventTownhall?: Partial<VirtualEventTownhall> | undefined): void;
|
|
70437
|
+
/**
|
|
70438
|
+
* Serializes information the current object
|
|
70439
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70440
|
+
*/
|
|
70441
|
+
export declare function serializeVirtualEventTownhallCollectionResponse(writer: SerializationWriter, virtualEventTownhallCollectionResponse?: Partial<VirtualEventTownhallCollectionResponse> | undefined): void;
|
|
69748
70442
|
/**
|
|
69749
70443
|
* Serializes information the current object
|
|
69750
70444
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69755,6 +70449,11 @@ export declare function serializeVirtualEventWebinar(writer: SerializationWriter
|
|
|
69755
70449
|
* @param writer Serialization writer to use to serialize this model
|
|
69756
70450
|
*/
|
|
69757
70451
|
export declare function serializeVirtualEventWebinarCollectionResponse(writer: SerializationWriter, virtualEventWebinarCollectionResponse?: Partial<VirtualEventWebinarCollectionResponse> | undefined): void;
|
|
70452
|
+
/**
|
|
70453
|
+
* Serializes information the current object
|
|
70454
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70455
|
+
*/
|
|
70456
|
+
export declare function serializeVirtualEventWebinarRegistrationConfiguration(writer: SerializationWriter, virtualEventWebinarRegistrationConfiguration?: Partial<VirtualEventWebinarRegistrationConfiguration> | undefined): void;
|
|
69758
70457
|
/**
|
|
69759
70458
|
* Serializes information the current object
|
|
69760
70459
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -71230,6 +71929,14 @@ export interface ServiceProvisioningXmlError extends Parsable, ServiceProvisioni
|
|
|
71230
71929
|
*/
|
|
71231
71930
|
errorDetail?: string;
|
|
71232
71931
|
}
|
|
71932
|
+
export interface ServiceStorageQuotaBreakdown extends Parsable, StorageQuotaBreakdown {
|
|
71933
|
+
}
|
|
71934
|
+
export interface ServiceStorageQuotaBreakdownCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
71935
|
+
/**
|
|
71936
|
+
* The value property
|
|
71937
|
+
*/
|
|
71938
|
+
value?: ServiceStorageQuotaBreakdown[];
|
|
71939
|
+
}
|
|
71233
71940
|
export type ServiceUpdateCategory = (typeof ServiceUpdateCategoryObject)[keyof typeof ServiceUpdateCategoryObject];
|
|
71234
71941
|
export interface ServiceUpdateMessage extends Parsable, ServiceAnnouncementBase {
|
|
71235
71942
|
/**
|
|
@@ -72148,7 +72855,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
72148
72855
|
*/
|
|
72149
72856
|
userId?: string;
|
|
72150
72857
|
/**
|
|
72151
|
-
* User principal name of the user that initiated the sign-in.
|
|
72858
|
+
* User principal name of the user that initiated the sign-in. This value is always in lowercase. For guest users whose values in the user object typically contain #EXT# before the domain part, this property stores the value in both lowercase and the 'true' format. For example, while the user object stores AdeleVance_fabrikam.com#EXT#@contoso.com, the sign-in logs store adelevance@fabrikam.com. Supports $filter (eq, startsWith).
|
|
72152
72859
|
*/
|
|
72153
72860
|
userPrincipalName?: string;
|
|
72154
72861
|
}
|
|
@@ -73122,6 +73829,10 @@ export interface Storage extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
73122
73829
|
* The OdataType property
|
|
73123
73830
|
*/
|
|
73124
73831
|
odataType?: string;
|
|
73832
|
+
/**
|
|
73833
|
+
* The settings property
|
|
73834
|
+
*/
|
|
73835
|
+
settings?: StorageSettings;
|
|
73125
73836
|
}
|
|
73126
73837
|
export interface StoragePlanInformation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
73127
73838
|
/**
|
|
@@ -73141,6 +73852,26 @@ export interface StoragePlanInformation extends AdditionalDataHolder, BackedMode
|
|
|
73141
73852
|
*/
|
|
73142
73853
|
upgradeAvailable?: boolean;
|
|
73143
73854
|
}
|
|
73855
|
+
export interface StorageQuotaBreakdown extends Entity, Parsable {
|
|
73856
|
+
/**
|
|
73857
|
+
* The displayName property
|
|
73858
|
+
*/
|
|
73859
|
+
displayName?: string;
|
|
73860
|
+
/**
|
|
73861
|
+
* The manageWebUrl property
|
|
73862
|
+
*/
|
|
73863
|
+
manageWebUrl?: string;
|
|
73864
|
+
/**
|
|
73865
|
+
* The used property
|
|
73866
|
+
*/
|
|
73867
|
+
used?: number;
|
|
73868
|
+
}
|
|
73869
|
+
export interface StorageSettings extends Entity, Parsable {
|
|
73870
|
+
/**
|
|
73871
|
+
* The quota property
|
|
73872
|
+
*/
|
|
73873
|
+
quota?: UnifiedStorageQuota;
|
|
73874
|
+
}
|
|
73144
73875
|
export interface StringCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
73145
73876
|
/**
|
|
73146
73877
|
* The value property
|
|
@@ -73979,7 +74710,7 @@ export interface SynchronizationSchedule extends AdditionalDataHolder, BackedMod
|
|
|
73979
74710
|
*/
|
|
73980
74711
|
expiration?: Date;
|
|
73981
74712
|
/**
|
|
73982
|
-
* The interval between synchronization iterations. The value is represented in ISO 8601
|
|
74713
|
+
* The interval between synchronization iterations. The value is represented in ISO 8601 format for durations. For example, P1M represents a period of one month and PT1M represents a period of one minute.
|
|
73983
74714
|
*/
|
|
73984
74715
|
interval?: Duration;
|
|
73985
74716
|
/**
|
|
@@ -75499,7 +76230,7 @@ export interface TenantAppManagementPolicy extends Parsable, PolicyBase {
|
|
|
75499
76230
|
/**
|
|
75500
76231
|
* Restrictions that apply as default to all application objects in the tenant.
|
|
75501
76232
|
*/
|
|
75502
|
-
applicationRestrictions?:
|
|
76233
|
+
applicationRestrictions?: AppManagementApplicationConfiguration;
|
|
75503
76234
|
/**
|
|
75504
76235
|
* Denotes whether the policy is enabled. Default value is false.
|
|
75505
76236
|
*/
|
|
@@ -75507,7 +76238,7 @@ export interface TenantAppManagementPolicy extends Parsable, PolicyBase {
|
|
|
75507
76238
|
/**
|
|
75508
76239
|
* Restrictions that apply as default to all service principal objects in the tenant.
|
|
75509
76240
|
*/
|
|
75510
|
-
servicePrincipalRestrictions?:
|
|
76241
|
+
servicePrincipalRestrictions?: AppManagementServicePrincipalConfiguration;
|
|
75511
76242
|
}
|
|
75512
76243
|
export interface TenantInformation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
75513
76244
|
/**
|
|
@@ -76641,7 +77372,7 @@ export interface UnifiedRoleAssignment extends Entity, Parsable {
|
|
|
76641
77372
|
*/
|
|
76642
77373
|
condition?: string;
|
|
76643
77374
|
/**
|
|
76644
|
-
* The directory object that is the scope of the assignment. Read-only. Supports $expand.
|
|
77375
|
+
* The directory object that is the scope of the assignment. Read-only. Supports $expand for the directory provider.
|
|
76645
77376
|
*/
|
|
76646
77377
|
directoryScope?: DirectoryObject;
|
|
76647
77378
|
/**
|
|
@@ -76649,7 +77380,7 @@ export interface UnifiedRoleAssignment extends Entity, Parsable {
|
|
|
76649
77380
|
*/
|
|
76650
77381
|
directoryScopeId?: string;
|
|
76651
77382
|
/**
|
|
76652
|
-
* Referencing the assigned principal. Read-only. Supports $expand.
|
|
77383
|
+
* Referencing the assigned principal. Read-only. Supports $expand except for the Exchange provider.
|
|
76653
77384
|
*/
|
|
76654
77385
|
principal?: DirectoryObject;
|
|
76655
77386
|
/**
|
|
@@ -76657,7 +77388,7 @@ export interface UnifiedRoleAssignment extends Entity, Parsable {
|
|
|
76657
77388
|
*/
|
|
76658
77389
|
principalId?: string;
|
|
76659
77390
|
/**
|
|
76660
|
-
* The roleDefinition the assignment is for.
|
|
77391
|
+
* The roleDefinition the assignment is for. Supports $expand.
|
|
76661
77392
|
*/
|
|
76662
77393
|
roleDefinition?: UnifiedRoleDefinition;
|
|
76663
77394
|
/**
|
|
@@ -77243,6 +77974,36 @@ export interface UnifiedRoleScheduleInstanceBase extends Entity, Parsable {
|
|
|
77243
77974
|
roleDefinitionId?: string;
|
|
77244
77975
|
}
|
|
77245
77976
|
export type UnifiedRoleScheduleRequestActions = (typeof UnifiedRoleScheduleRequestActionsObject)[keyof typeof UnifiedRoleScheduleRequestActionsObject];
|
|
77977
|
+
export interface UnifiedStorageQuota extends Entity, Parsable {
|
|
77978
|
+
/**
|
|
77979
|
+
* The deleted property
|
|
77980
|
+
*/
|
|
77981
|
+
deleted?: number;
|
|
77982
|
+
/**
|
|
77983
|
+
* The manageWebUrl property
|
|
77984
|
+
*/
|
|
77985
|
+
manageWebUrl?: string;
|
|
77986
|
+
/**
|
|
77987
|
+
* The remaining property
|
|
77988
|
+
*/
|
|
77989
|
+
remaining?: number;
|
|
77990
|
+
/**
|
|
77991
|
+
* The services property
|
|
77992
|
+
*/
|
|
77993
|
+
services?: ServiceStorageQuotaBreakdown[];
|
|
77994
|
+
/**
|
|
77995
|
+
* The state property
|
|
77996
|
+
*/
|
|
77997
|
+
state?: string;
|
|
77998
|
+
/**
|
|
77999
|
+
* The total property
|
|
78000
|
+
*/
|
|
78001
|
+
total?: number;
|
|
78002
|
+
/**
|
|
78003
|
+
* The used property
|
|
78004
|
+
*/
|
|
78005
|
+
used?: number;
|
|
78006
|
+
}
|
|
77246
78007
|
export interface UnmuteParticipantOperation extends CommsOperation, Parsable {
|
|
77247
78008
|
}
|
|
77248
78009
|
export interface UpdateAllowedCombinationsResult extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -77643,7 +78404,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
77643
78404
|
/**
|
|
77644
78405
|
* The insights property
|
|
77645
78406
|
*/
|
|
77646
|
-
insights?:
|
|
78407
|
+
insights?: ItemInsights;
|
|
77647
78408
|
/**
|
|
77648
78409
|
* A list for the user to describe their interests. Returned only on $select.
|
|
77649
78410
|
*/
|
|
@@ -79427,6 +80188,12 @@ export interface UserIdentity extends Identity, Parsable {
|
|
|
79427
80188
|
*/
|
|
79428
80189
|
userPrincipalName?: string;
|
|
79429
80190
|
}
|
|
80191
|
+
export interface UserInsightsSettings extends Entity, Parsable {
|
|
80192
|
+
/**
|
|
80193
|
+
* The isEnabled property
|
|
80194
|
+
*/
|
|
80195
|
+
isEnabled?: boolean;
|
|
80196
|
+
}
|
|
79430
80197
|
/**
|
|
79431
80198
|
* Contains properties for the installation state summary for a user.
|
|
79432
80199
|
*/
|
|
@@ -79750,10 +80517,18 @@ export interface UserSettings extends Entity, Parsable {
|
|
|
79750
80517
|
* When set to true, the delegate access to the user's trending API is disabled. When set to true, documents in the user's Office Delve are disabled. When set to true, the relevancy of the content displayed in Microsoft 365, for example in Suggested sites in SharePoint Home and the Discover view in OneDrive for Business is affected. Users can control this setting in Office Delve.
|
|
79751
80518
|
*/
|
|
79752
80519
|
contributionToContentDiscoveryDisabled?: boolean;
|
|
80520
|
+
/**
|
|
80521
|
+
* The itemInsights property
|
|
80522
|
+
*/
|
|
80523
|
+
itemInsights?: UserInsightsSettings;
|
|
79753
80524
|
/**
|
|
79754
80525
|
* The shiftPreferences property
|
|
79755
80526
|
*/
|
|
79756
80527
|
shiftPreferences?: ShiftPreferences;
|
|
80528
|
+
/**
|
|
80529
|
+
* The storage property
|
|
80530
|
+
*/
|
|
80531
|
+
storage?: UserStorage;
|
|
79757
80532
|
/**
|
|
79758
80533
|
* The windows property
|
|
79759
80534
|
*/
|
|
@@ -79850,6 +80625,12 @@ export interface UserSimulationEventInfo extends AdditionalDataHolder, BackedMod
|
|
|
79850
80625
|
*/
|
|
79851
80626
|
osPlatformDeviceDetails?: string;
|
|
79852
80627
|
}
|
|
80628
|
+
export interface UserStorage extends Entity, Parsable {
|
|
80629
|
+
/**
|
|
80630
|
+
* The quota property
|
|
80631
|
+
*/
|
|
80632
|
+
quota?: UnifiedStorageQuota;
|
|
80633
|
+
}
|
|
79853
80634
|
export interface UserTeamwork extends Entity, Parsable {
|
|
79854
80635
|
/**
|
|
79855
80636
|
* The list of associatedTeamInfo objects that a user is associated with.
|
|
@@ -80139,6 +80920,10 @@ export interface VirtualEvent extends Entity, Parsable {
|
|
|
80139
80920
|
* End time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
|
|
80140
80921
|
*/
|
|
80141
80922
|
endDateTime?: DateTimeTimeZone;
|
|
80923
|
+
/**
|
|
80924
|
+
* The presenters property
|
|
80925
|
+
*/
|
|
80926
|
+
presenters?: VirtualEventPresenter[];
|
|
80142
80927
|
/**
|
|
80143
80928
|
* Sessions for the virtual event.
|
|
80144
80929
|
*/
|
|
@@ -80159,6 +80944,74 @@ export interface VirtualEventCollectionResponse extends BaseCollectionPagination
|
|
|
80159
80944
|
*/
|
|
80160
80945
|
value?: VirtualEvent[];
|
|
80161
80946
|
}
|
|
80947
|
+
export interface VirtualEventPresenter extends Entity, Parsable {
|
|
80948
|
+
/**
|
|
80949
|
+
* The email property
|
|
80950
|
+
*/
|
|
80951
|
+
email?: string;
|
|
80952
|
+
/**
|
|
80953
|
+
* The identity property
|
|
80954
|
+
*/
|
|
80955
|
+
identity?: Identity;
|
|
80956
|
+
/**
|
|
80957
|
+
* The presenterDetails property
|
|
80958
|
+
*/
|
|
80959
|
+
presenterDetails?: VirtualEventPresenterDetails;
|
|
80960
|
+
}
|
|
80961
|
+
export interface VirtualEventPresenterCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
80962
|
+
/**
|
|
80963
|
+
* The value property
|
|
80964
|
+
*/
|
|
80965
|
+
value?: VirtualEventPresenter[];
|
|
80966
|
+
}
|
|
80967
|
+
export interface VirtualEventPresenterDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
80968
|
+
/**
|
|
80969
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
80970
|
+
*/
|
|
80971
|
+
additionalData?: Record<string, unknown>;
|
|
80972
|
+
/**
|
|
80973
|
+
* Stores model information.
|
|
80974
|
+
*/
|
|
80975
|
+
backingStoreEnabled?: boolean;
|
|
80976
|
+
/**
|
|
80977
|
+
* The bio property
|
|
80978
|
+
*/
|
|
80979
|
+
bio?: ItemBody;
|
|
80980
|
+
/**
|
|
80981
|
+
* The company property
|
|
80982
|
+
*/
|
|
80983
|
+
company?: string;
|
|
80984
|
+
/**
|
|
80985
|
+
* The jobTitle property
|
|
80986
|
+
*/
|
|
80987
|
+
jobTitle?: string;
|
|
80988
|
+
/**
|
|
80989
|
+
* The linkedInProfileWebUrl property
|
|
80990
|
+
*/
|
|
80991
|
+
linkedInProfileWebUrl?: string;
|
|
80992
|
+
/**
|
|
80993
|
+
* The OdataType property
|
|
80994
|
+
*/
|
|
80995
|
+
odataType?: string;
|
|
80996
|
+
/**
|
|
80997
|
+
* The personalSiteWebUrl property
|
|
80998
|
+
*/
|
|
80999
|
+
personalSiteWebUrl?: string;
|
|
81000
|
+
/**
|
|
81001
|
+
* The photo property
|
|
81002
|
+
*/
|
|
81003
|
+
photo?: string;
|
|
81004
|
+
/**
|
|
81005
|
+
* The twitterProfileWebUrl property
|
|
81006
|
+
*/
|
|
81007
|
+
twitterProfileWebUrl?: string;
|
|
81008
|
+
}
|
|
81009
|
+
export interface VirtualEventPresenterInfo extends MeetingParticipantInfo, Parsable {
|
|
81010
|
+
/**
|
|
81011
|
+
* The presenterDetails property
|
|
81012
|
+
*/
|
|
81013
|
+
presenterDetails?: VirtualEventPresenterDetails;
|
|
81014
|
+
}
|
|
80162
81015
|
export interface VirtualEventRegistration extends Entity, Parsable {
|
|
80163
81016
|
/**
|
|
80164
81017
|
* Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
@@ -80176,6 +81029,14 @@ export interface VirtualEventRegistration extends Entity, Parsable {
|
|
|
80176
81029
|
* Last name of the registrant.
|
|
80177
81030
|
*/
|
|
80178
81031
|
lastName?: string;
|
|
81032
|
+
/**
|
|
81033
|
+
* The preferredLanguage property
|
|
81034
|
+
*/
|
|
81035
|
+
preferredLanguage?: string;
|
|
81036
|
+
/**
|
|
81037
|
+
* The preferredTimezone property
|
|
81038
|
+
*/
|
|
81039
|
+
preferredTimezone?: string;
|
|
80179
81040
|
/**
|
|
80180
81041
|
* Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
80181
81042
|
*/
|
|
@@ -80184,6 +81045,10 @@ export interface VirtualEventRegistration extends Entity, Parsable {
|
|
|
80184
81045
|
* The registrant's answer to the registration questions.
|
|
80185
81046
|
*/
|
|
80186
81047
|
registrationQuestionAnswers?: VirtualEventRegistrationQuestionAnswer[];
|
|
81048
|
+
/**
|
|
81049
|
+
* The sessions property
|
|
81050
|
+
*/
|
|
81051
|
+
sessions?: VirtualEventSession[];
|
|
80187
81052
|
/**
|
|
80188
81053
|
* Registration status of the registrant. Read-only.
|
|
80189
81054
|
*/
|
|
@@ -80199,6 +81064,37 @@ export interface VirtualEventRegistrationCollectionResponse extends BaseCollecti
|
|
|
80199
81064
|
*/
|
|
80200
81065
|
value?: VirtualEventRegistration[];
|
|
80201
81066
|
}
|
|
81067
|
+
export interface VirtualEventRegistrationConfiguration extends Entity, Parsable {
|
|
81068
|
+
/**
|
|
81069
|
+
* The capacity property
|
|
81070
|
+
*/
|
|
81071
|
+
capacity?: number;
|
|
81072
|
+
/**
|
|
81073
|
+
* The questions property
|
|
81074
|
+
*/
|
|
81075
|
+
questions?: VirtualEventRegistrationQuestionBase[];
|
|
81076
|
+
/**
|
|
81077
|
+
* The registrationWebUrl property
|
|
81078
|
+
*/
|
|
81079
|
+
registrationWebUrl?: string;
|
|
81080
|
+
}
|
|
81081
|
+
export interface VirtualEventRegistrationCustomQuestion extends Parsable, VirtualEventRegistrationQuestionBase {
|
|
81082
|
+
/**
|
|
81083
|
+
* The answerChoices property
|
|
81084
|
+
*/
|
|
81085
|
+
answerChoices?: string[];
|
|
81086
|
+
/**
|
|
81087
|
+
* The answerInputType property
|
|
81088
|
+
*/
|
|
81089
|
+
answerInputType?: VirtualEventRegistrationQuestionAnswerInputType;
|
|
81090
|
+
}
|
|
81091
|
+
export interface VirtualEventRegistrationPredefinedQuestion extends Parsable, VirtualEventRegistrationQuestionBase {
|
|
81092
|
+
/**
|
|
81093
|
+
* The label property
|
|
81094
|
+
*/
|
|
81095
|
+
label?: VirtualEventRegistrationPredefinedQuestionLabel;
|
|
81096
|
+
}
|
|
81097
|
+
export type VirtualEventRegistrationPredefinedQuestionLabel = (typeof VirtualEventRegistrationPredefinedQuestionLabelObject)[keyof typeof VirtualEventRegistrationPredefinedQuestionLabelObject];
|
|
80202
81098
|
export interface VirtualEventRegistrationQuestionAnswer extends AdditionalDataHolder, BackedModel, Parsable {
|
|
80203
81099
|
/**
|
|
80204
81100
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -80233,6 +81129,23 @@ export interface VirtualEventRegistrationQuestionAnswer extends AdditionalDataHo
|
|
|
80233
81129
|
*/
|
|
80234
81130
|
value?: string;
|
|
80235
81131
|
}
|
|
81132
|
+
export type VirtualEventRegistrationQuestionAnswerInputType = (typeof VirtualEventRegistrationQuestionAnswerInputTypeObject)[keyof typeof VirtualEventRegistrationQuestionAnswerInputTypeObject];
|
|
81133
|
+
export interface VirtualEventRegistrationQuestionBase extends Entity, Parsable {
|
|
81134
|
+
/**
|
|
81135
|
+
* The displayName property
|
|
81136
|
+
*/
|
|
81137
|
+
displayName?: string;
|
|
81138
|
+
/**
|
|
81139
|
+
* The isRequired property
|
|
81140
|
+
*/
|
|
81141
|
+
isRequired?: boolean;
|
|
81142
|
+
}
|
|
81143
|
+
export interface VirtualEventRegistrationQuestionBaseCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
81144
|
+
/**
|
|
81145
|
+
* The value property
|
|
81146
|
+
*/
|
|
81147
|
+
value?: VirtualEventRegistrationQuestionBase[];
|
|
81148
|
+
}
|
|
80236
81149
|
export interface VirtualEventSession extends OnlineMeetingBase, Parsable {
|
|
80237
81150
|
/**
|
|
80238
81151
|
* The virtual event session end time.
|
|
@@ -80254,12 +81167,40 @@ export interface VirtualEventsRoot extends Entity, Parsable {
|
|
|
80254
81167
|
* The events property
|
|
80255
81168
|
*/
|
|
80256
81169
|
events?: VirtualEvent[];
|
|
81170
|
+
/**
|
|
81171
|
+
* The townhalls property
|
|
81172
|
+
*/
|
|
81173
|
+
townhalls?: VirtualEventTownhall[];
|
|
80257
81174
|
/**
|
|
80258
81175
|
* The webinars property
|
|
80259
81176
|
*/
|
|
80260
81177
|
webinars?: VirtualEventWebinar[];
|
|
80261
81178
|
}
|
|
80262
81179
|
export type VirtualEventStatus = (typeof VirtualEventStatusObject)[keyof typeof VirtualEventStatusObject];
|
|
81180
|
+
export interface VirtualEventTownhall extends Parsable, VirtualEvent {
|
|
81181
|
+
/**
|
|
81182
|
+
* The audience property
|
|
81183
|
+
*/
|
|
81184
|
+
audience?: MeetingAudience;
|
|
81185
|
+
/**
|
|
81186
|
+
* The coOrganizers property
|
|
81187
|
+
*/
|
|
81188
|
+
coOrganizers?: CommunicationsUserIdentity[];
|
|
81189
|
+
/**
|
|
81190
|
+
* The invitedAttendees property
|
|
81191
|
+
*/
|
|
81192
|
+
invitedAttendees?: Identity[];
|
|
81193
|
+
/**
|
|
81194
|
+
* The isInviteOnly property
|
|
81195
|
+
*/
|
|
81196
|
+
isInviteOnly?: boolean;
|
|
81197
|
+
}
|
|
81198
|
+
export interface VirtualEventTownhallCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
81199
|
+
/**
|
|
81200
|
+
* The value property
|
|
81201
|
+
*/
|
|
81202
|
+
value?: VirtualEventTownhall[];
|
|
81203
|
+
}
|
|
80263
81204
|
export interface VirtualEventWebinar extends Parsable, VirtualEvent {
|
|
80264
81205
|
/**
|
|
80265
81206
|
* To whom the webinar is visible.
|
|
@@ -80269,6 +81210,10 @@ export interface VirtualEventWebinar extends Parsable, VirtualEvent {
|
|
|
80269
81210
|
* Identity information of coorganizers of the webinar.
|
|
80270
81211
|
*/
|
|
80271
81212
|
coOrganizers?: CommunicationsUserIdentity[];
|
|
81213
|
+
/**
|
|
81214
|
+
* The registrationConfiguration property
|
|
81215
|
+
*/
|
|
81216
|
+
registrationConfiguration?: VirtualEventWebinarRegistrationConfiguration;
|
|
80272
81217
|
/**
|
|
80273
81218
|
* Registration records of the webinar.
|
|
80274
81219
|
*/
|
|
@@ -80280,6 +81225,16 @@ export interface VirtualEventWebinarCollectionResponse extends BaseCollectionPag
|
|
|
80280
81225
|
*/
|
|
80281
81226
|
value?: VirtualEventWebinar[];
|
|
80282
81227
|
}
|
|
81228
|
+
export interface VirtualEventWebinarRegistrationConfiguration extends Parsable, VirtualEventRegistrationConfiguration {
|
|
81229
|
+
/**
|
|
81230
|
+
* The isManualApprovalEnabled property
|
|
81231
|
+
*/
|
|
81232
|
+
isManualApprovalEnabled?: boolean;
|
|
81233
|
+
/**
|
|
81234
|
+
* The isWaitlistEnabled property
|
|
81235
|
+
*/
|
|
81236
|
+
isWaitlistEnabled?: boolean;
|
|
81237
|
+
}
|
|
80283
81238
|
export type VisibilitySetting = (typeof VisibilitySettingObject)[keyof typeof VisibilitySettingObject];
|
|
80284
81239
|
export interface VisualInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
80285
81240
|
/**
|
|
@@ -85831,6 +86786,7 @@ export declare const AssignmentTypeObject: {
|
|
|
85831
86786
|
readonly Required: "required";
|
|
85832
86787
|
readonly Recommended: "recommended";
|
|
85833
86788
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86789
|
+
readonly PeerRecommended: "peerRecommended";
|
|
85834
86790
|
};
|
|
85835
86791
|
export declare const AttachmentTypeObject: {
|
|
85836
86792
|
readonly File: "file";
|
|
@@ -86051,6 +87007,11 @@ export declare const BodyTypeObject: {
|
|
|
86051
87007
|
readonly Text: "text";
|
|
86052
87008
|
readonly Html: "html";
|
|
86053
87009
|
};
|
|
87010
|
+
export declare const BookingPageAccessControlObject: {
|
|
87011
|
+
readonly Unrestricted: "unrestricted";
|
|
87012
|
+
readonly RestrictedToOrganization: "restrictedToOrganization";
|
|
87013
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87014
|
+
};
|
|
86054
87015
|
/**
|
|
86055
87016
|
* Represents the type of pricing of a booking service.
|
|
86056
87017
|
*/
|
|
@@ -86086,6 +87047,12 @@ export declare const BookingsAvailabilityStatusObject: {
|
|
|
86086
87047
|
readonly OutOfOffice: "outOfOffice";
|
|
86087
87048
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86088
87049
|
};
|
|
87050
|
+
export declare const BookingsServiceAvailabilityTypeObject: {
|
|
87051
|
+
readonly BookWhenStaffAreFree: "bookWhenStaffAreFree";
|
|
87052
|
+
readonly NotBookable: "notBookable";
|
|
87053
|
+
readonly CustomWeeklyHours: "customWeeklyHours";
|
|
87054
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87055
|
+
};
|
|
86089
87056
|
export declare const BookingStaffMembershipStatusObject: {
|
|
86090
87057
|
readonly Active: "active";
|
|
86091
87058
|
readonly PendingAcceptance: "pendingAcceptance";
|
|
@@ -88218,6 +89185,11 @@ export declare const MutabilityObject: {
|
|
|
88218
89185
|
readonly Immutable: "Immutable";
|
|
88219
89186
|
readonly WriteOnly: "WriteOnly";
|
|
88220
89187
|
};
|
|
89188
|
+
export declare const NativeAuthenticationApisEnabledObject: {
|
|
89189
|
+
readonly None: "none";
|
|
89190
|
+
readonly All: "all";
|
|
89191
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89192
|
+
};
|
|
88221
89193
|
export declare const NotificationDeliveryFrequencyObject: {
|
|
88222
89194
|
readonly Unknown: "unknown";
|
|
88223
89195
|
readonly Weekly: "weekly";
|
|
@@ -90688,6 +91660,8 @@ export declare const TeamsAsyncOperationTypeObject: {
|
|
|
90688
91660
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90689
91661
|
readonly TeamifyGroup: "teamifyGroup";
|
|
90690
91662
|
readonly CreateChannel: "createChannel";
|
|
91663
|
+
readonly ArchiveChannel: "archiveChannel";
|
|
91664
|
+
readonly UnarchiveChannel: "unarchiveChannel";
|
|
90691
91665
|
};
|
|
90692
91666
|
export declare const TeamSpecializationObject: {
|
|
90693
91667
|
readonly None: "none";
|
|
@@ -91030,6 +92004,25 @@ export declare const VirtualEventAttendeeRegistrationStatusObject: {
|
|
|
91030
92004
|
readonly RejectedByOrganizer: "rejectedByOrganizer";
|
|
91031
92005
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91032
92006
|
};
|
|
92007
|
+
export declare const VirtualEventRegistrationPredefinedQuestionLabelObject: {
|
|
92008
|
+
readonly Street: "street";
|
|
92009
|
+
readonly City: "city";
|
|
92010
|
+
readonly State: "state";
|
|
92011
|
+
readonly PostalCode: "postalCode";
|
|
92012
|
+
readonly CountryOrRegion: "countryOrRegion";
|
|
92013
|
+
readonly Industry: "industry";
|
|
92014
|
+
readonly JobTitle: "jobTitle";
|
|
92015
|
+
readonly Organization: "organization";
|
|
92016
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
92017
|
+
};
|
|
92018
|
+
export declare const VirtualEventRegistrationQuestionAnswerInputTypeObject: {
|
|
92019
|
+
readonly Text: "text";
|
|
92020
|
+
readonly MultilineText: "multilineText";
|
|
92021
|
+
readonly SingleChoice: "singleChoice";
|
|
92022
|
+
readonly MultiChoice: "multiChoice";
|
|
92023
|
+
readonly Boolean: "boolean";
|
|
92024
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
92025
|
+
};
|
|
91033
92026
|
export declare const VirtualEventStatusObject: {
|
|
91034
92027
|
readonly Draft: "draft";
|
|
91035
92028
|
readonly Published: "published";
|