[office-js] [office-js-preview] (Outlook) Update changedRecipientFields object (#41891)

This commit is contained in:
Elizabeth Samuel 2020-01-27 10:37:50 -08:00 committed by Wesley Wigham
parent 0f8be84d4f
commit 7c439294f1
2 changed files with 84 additions and 48 deletions

View File

@ -15464,7 +15464,7 @@ declare namespace Office {
*
* [Api set: Mailbox 1.7]
*/
changedRecipientsFields: RecipientsChangedFields;
changedRecipientFields: RecipientsChangedFields;
/**
* Gets the type of the event. See `Office.EventType` for details.
*
@ -15473,29 +15473,47 @@ declare namespace Office {
type: "olkRecipientsChanged";
}
/**
* Represents `RecipientsChangedEventArgs.changedRecipientsFields` object.
*
* [Api set: Mailbox 1.7]
*/
interface RecipientsChangedFields {
/**
* Gets if optional attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
optionalAttendees: boolean;
/**
* Gets if required attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
requiredAttendees: boolean;
/**
* Gets if resources were changed.
*
* [Api set: Mailbox 1.7]
*/
resources: boolean;
* Represents `RecipientsChangedEventArgs.changedRecipientFields` object.
*
* [Api set: Mailbox 1.7]
*/
interface RecipientsChangedFields {
/**
* Gets if recipients in the **bcc** field were changed.
*
* [Api set: Mailbox 1.7]
*/
bcc: boolean
/**
* Gets if recipients in the **cc** field were changed.
*
* [Api set: Mailbox 1.7]
*/
cc: boolean;
/**
* Gets if optional attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
optionalAttendees: boolean;
/**
* Gets if required attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
requiredAttendees: boolean;
/**
* Gets if resources were changed.
*
* [Api set: Mailbox 1.7]
*/
resources: boolean;
/**
* Gets if recipients in the **to** field were changed.
*
* [Api set: Mailbox 1.7]
*/
to: boolean;
}
/**
* The recurrence object provides methods to get and set the recurrence pattern of appointments but only get the recurrence pattern of

View File

@ -15154,7 +15154,7 @@ declare namespace Office {
*
* [Api set: Mailbox 1.7]
*/
changedRecipientsFields: RecipientsChangedFields;
changedRecipientFields: RecipientsChangedFields;
/**
* Gets the type of the event. See `Office.EventType` for details.
*
@ -15163,29 +15163,47 @@ declare namespace Office {
type: "olkRecipientsChanged";
}
/**
* Represents `RecipientsChangedEventArgs.changedRecipientsFields` object.
*
* [Api set: Mailbox 1.7]
*/
interface RecipientsChangedFields {
/**
* Gets if optional attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
optionalAttendees: boolean;
/**
* Gets if required attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
requiredAttendees: boolean;
/**
* Gets if resources were changed.
*
* [Api set: Mailbox 1.7]
*/
resources: boolean;
* Represents `RecipientsChangedEventArgs.changedRecipientFields` object.
*
* [Api set: Mailbox 1.7]
*/
interface RecipientsChangedFields {
/**
* Gets if recipients in the **bcc** field were changed.
*
* [Api set: Mailbox 1.7]
*/
bcc: boolean
/**
* Gets if recipients in the **cc** field were changed.
*
* [Api set: Mailbox 1.7]
*/
cc: boolean;
/**
* Gets if optional attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
optionalAttendees: boolean;
/**
* Gets if required attendees were changed.
*
* [Api set: Mailbox 1.7]
*/
requiredAttendees: boolean;
/**
* Gets if resources were changed.
*
* [Api set: Mailbox 1.7]
*/
resources: boolean;
/**
* Gets if recipients in the **to** field were changed.
*
* [Api set: Mailbox 1.7]
*/
to: boolean;
}
/**
* The recurrence object provides methods to get and set the recurrence pattern of appointments but only get the recurrence pattern of