interface Actor {
    active: boolean;
    displayName: string;
    emailAddress: string;
    id: number;
    links: pr.commentEdited.ActorLinks;
    name: string;
    slug: string;
    type: undefined | "NORMAL" | "SERVICE";
}

Properties

active: boolean
displayName: string
emailAddress: string
id: number
name: string
slug: string
type: undefined | "NORMAL" | "SERVICE"