个人更新动态

interface PersonalUpdate {
    action: string;
    createdAt: string;
    id: string;
    readTrackInfo: ReadTrackInfo;
    targetUsernames: string[];
    targetUsers: User[];
    type: "PERSONAL_UPDATE";
    updateIds: string[];
    usernames: string[];
    users: User[];
}

Properties

action: string
createdAt: string

ISO-8601 格式,如 2015-03-04T00:00:00.000Z

id: string
readTrackInfo: ReadTrackInfo
targetUsernames: string[]
targetUsers: User[]
type
updateIds: string[]
usernames: string[]
users: User[]