The list of projects to pin or unpin the issue panel to or from.

interface ProjectPinAction {
    action: "PIN" | "UNPIN";
    projectIdOrKey: string;
}

Properties

action: "PIN" | "UNPIN"

The action to perform: PIN or UNPIN.

projectIdOrKey: string

The project ID or key.