活動的傳輸格式。
簽名:
export interface Event
屬性
屬性 | 類型 | 說明 |
---|---|---|
背景資訊 | { eventId:字串;timestamp:字串;eventType:字串;資源:資源;domain?:字串;驗證?:{ 變數?:{ uid?: 字串;符記?:字串;};admin:布林值;};} | 事件結構定義的傳輸格式。 |
資料 | 不限 | 傳輸事件資料。 |
Event.context
事件結構定義的傳輸格式。
簽名:
context: {
eventId: string;
timestamp: string;
eventType: string;
resource: Resource;
domain?: string;
auth?: {
variable?: {
uid?: string;
token?: string;
};
admin: boolean;
};
};
Event.data
傳輸事件資料。
簽名:
data: any;