日历属性[1]中所有者的电子邮件是什么意思?
是所有者的SMTP地址,userPrincipalName还是用户资源的其他属性[2]?
参考 [1] https://docs.microsoft.com/en-us/graph/api/resources/calendar?view=graph-rest-1.0#properties
[2] https://docs.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0#properties
答案 0 :(得分:0)
如documentation中所述:
所有者-emailAddress-如果设置,则表示创建或添加日历的用户。对于用户创建或添加的日历,将owner属性设置为该用户。对于与用户共享的日历,将owner属性设置为与用户共享该日历的人。
这是一个emailAddress,是一个包含用户名称和地址的简单对象:
import 'package:provider/provider.dart';
import 'package:collection/collection.dart';
StreamProvider<List<int>>(
builder: (_) => stream,
updateShouldNotify: const ListEquality<int>().equals,
);