now that exchange api has been folded in with the rest of the m365 api, it doesn't make sense to maintain an options file with only exchange functionality. Since all calls in the file were used 1:1 with some api func, those options have been moved into their respective api funcs. --- #### Does this PR need a docs update or release note? - [x] ⛔ No #### Type of change - [x] 🧹 Tech Debt/Cleanup #### Issue(s) * #1996 #### Test Plan - [x] 💚 E2E
12 lines
310 B
Go
12 lines
310 B
Go
package api
|
|
|
|
// DeltaUpdate holds the results of a current delta token. It normally
|
|
// gets produced when aggregating the addition and removal of items in
|
|
// a delta-queryable folder.
|
|
type DeltaUpdate struct {
|
|
// the deltaLink itself
|
|
URL string
|
|
// true if the old delta was marked as invalid
|
|
Reset bool
|
|
}
|