[office-js-preview] (Outlook) Update SharedProperties props (#36934)

* [office-js-preview] (Outlook) Update SharedProperties props

* Update comment

* Tweak comments

* Tweak comment formatting

* Update based on feedback

* Update based on feedback
This commit is contained in:
Elizabeth Samuel
2019-07-16 15:23:12 -07:00
committed by Andrew Branch
parent 8e8b569b34
commit d4e7e6fb88

View File

@@ -16900,11 +16900,20 @@ declare namespace Office {
/**
* The email address of the owner of a shared item.
*/
owner: String;
owner: string;
/**
* The remote REST URL related to the owners mailbox.
* The REST API's base URL (currently https://outlook.office.com/api).
* Use with targetMailbox to construct REST operation's URL.
*
* Example usage: `targetRestUrl + "/{api_version}/users/" + targetMailbox + "/{REST_operation}"`
*/
restUrl: String;
targetRestUrl: string;
/**
* The target/owner's mailbox. Use with targetRestUrl to construct REST operation's URL.
*
* Example usage: `targetRestUrl + "/{api_version}/users/" + targetMailbox + "/{REST_operation}"`
*/
targetMailbox: string;
/**
* The permissions that the delegate has on a shared folder.
*/