Word.Interfaces.CoauthoringData interface
An interface describing the data returned by calling coauthoring.toJSON()
.
Properties
authors | Gets a |
can |
Gets whether this document can be coauthored. |
can |
Gets whether the document can be automatically merged. |
conflicts | Gets a |
locks | Gets a |
me | Gets a |
pending |
Gets whether the document has pending updates that have not been accepted. |
updates | Gets a |
Property Details
authors
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets a CoauthorCollection
object that represents all the coauthors currently editing the document.
authors?: Word.Interfaces.CoauthorData[];
Property Value
Remarks
canCoauthor
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets whether this document can be coauthored.
canCoauthor?: boolean;
Property Value
boolean
Remarks
canMerge
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets whether the document can be automatically merged.
canMerge?: boolean;
Property Value
boolean
Remarks
conflicts
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets a ConflictCollection
object that represents all the conflicts in the document.
conflicts?: Word.Interfaces.ConflictData[];
Property Value
Remarks
locks
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets a CoauthoringLockCollection
object that represents the locks in the document.
locks?: Word.Interfaces.CoauthoringLockData[];
Property Value
Remarks
me
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets a Coauthor
object that represents the current user.
me?: Word.Interfaces.CoauthorData;
Property Value
Remarks
pendingUpdates
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets whether the document has pending updates that have not been accepted.
pendingUpdates?: boolean;
Property Value
boolean
Remarks
updates
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets a CoauthoringUpdateCollection
object that represents the most recent updates that were merged into the document.
updates?: Word.Interfaces.CoauthoringUpdateData[];