[office-js] [office-js-preview] (Outlook) Note optional properties (#43621)

* [office-js] [office-js-preview] (Outlook) Note optional properties

* [office-js] [office-js-preview] (Outlook) Additional optional properties
This commit is contained in:
Elizabeth Samuel
2020-04-03 14:58:12 -07:00
committed by GitHub
parent 9b0ab8a838
commit 7d07319135
2 changed files with 18 additions and 18 deletions
+9 -9
View File
@@ -16405,7 +16405,7 @@ declare namespace Office {
*
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
*/
recurrenceProperties: RecurrenceProperties;
recurrenceProperties?: RecurrenceProperties;
/**
* Gets or sets the properties of the recurring appointment series.
*
@@ -16417,7 +16417,7 @@ declare namespace Office {
*
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
*/
recurrenceTimeZone: RecurrenceTimeZone;
recurrenceTimeZone?: RecurrenceTimeZone;
/**
* Gets or sets the type of the recurring appointment series.
*
@@ -16566,28 +16566,28 @@ declare namespace Office {
/**
* Represents the day of the month.
*/
dayOfMonth: number;
dayOfMonth?: number;
/**
* Represents the day of the week or type of day, for example, weekend day vs weekday.
*/
dayOfWeek: MailboxEnums.Days | string;
dayOfWeek?: MailboxEnums.Days | string;
/**
* Represents the set of days for this recurrence. Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'.
*/
days: MailboxEnums.Days[] | string[];
days?: MailboxEnums.Days[] | string[];
/**
* Represents the number of the week in the selected month e.g. 'first' for first week of the month.
*/
weekNumber: MailboxEnums.WeekNumber | string;
weekNumber?: MailboxEnums.WeekNumber | string;
/**
* Represents the month.
*/
month: MailboxEnums.Month | string;
month?: MailboxEnums.Month | string;
/**
* Represents your chosen first day of the week otherwise the default is the value in the current user's settings.
* Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'.
*/
firstDayOfWeek: MailboxEnums.Days | string;
firstDayOfWeek?: MailboxEnums.Days | string;
}
/**
* Represents the time zone of the recurrence.
@@ -16609,7 +16609,7 @@ declare namespace Office {
/**
* Integer value representing the difference in minutes between the local time zone and UTC at the date that the meeting series began.
*/
offset: number;
offset?: number;
}
/**
* A file or item attachment. Used when displaying a reply form.
+9 -9
View File
@@ -15328,7 +15328,7 @@ declare namespace Office {
*
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
*/
recurrenceProperties: RecurrenceProperties;
recurrenceProperties?: RecurrenceProperties;
/**
* Gets or sets the properties of the recurring appointment series.
*
@@ -15340,7 +15340,7 @@ declare namespace Office {
*
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
*/
recurrenceTimeZone: RecurrenceTimeZone;
recurrenceTimeZone?: RecurrenceTimeZone;
/**
* Gets or sets the type of the recurring appointment series.
*
@@ -15489,28 +15489,28 @@ declare namespace Office {
/**
* Represents the day of the month.
*/
dayOfMonth: number;
dayOfMonth?: number;
/**
* Represents the day of the week or type of day, for example, weekend day vs weekday.
*/
dayOfWeek: MailboxEnums.Days | string;
dayOfWeek?: MailboxEnums.Days | string;
/**
* Represents the set of days for this recurrence. Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'.
*/
days: MailboxEnums.Days[] | string[];
days?: MailboxEnums.Days[] | string[];
/**
* Represents the number of the week in the selected month e.g. 'first' for first week of the month.
*/
weekNumber: MailboxEnums.WeekNumber | string;
weekNumber?: MailboxEnums.WeekNumber | string;
/**
* Represents the month.
*/
month: MailboxEnums.Month | string;
month?: MailboxEnums.Month | string;
/**
* Represents your chosen first day of the week otherwise the default is the value in the current user's settings.
* Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'.
*/
firstDayOfWeek: MailboxEnums.Days | string;
firstDayOfWeek?: MailboxEnums.Days | string;
}
/**
* Represents the time zone of the recurrence.
@@ -15532,7 +15532,7 @@ declare namespace Office {
/**
* Integer value representing the difference in minutes between the local time zone and UTC at the date that the meeting series began.
*/
offset: number;
offset?: number;
}
/**
* A file or item attachment. Used when displaying a reply form.