interface ActivityTypeIssueCommented {
    content: {
        attachments: AttachmentFile[];
        changes: ActivityTypeIssueChange[];
        comment: ActivityTypeComment;
        description: string;
        external_file_links: ActivityExternalFileLinks[];
        id: number;
        key_id: number;
        shared_files: ActivitySharedFile[];
        summary: string;
    };
    created?: string;
    createdUser?: User;
    id: number;
    notifications?: ActivityNotification[];
    project?: ActivityProject;
    type: 3;
}

Hierarchy

  • ActivityBase
    • ActivityTypeIssueCommented

Properties

content: {
    attachments: AttachmentFile[];
    changes: ActivityTypeIssueChange[];
    comment: ActivityTypeComment;
    description: string;
    external_file_links: ActivityExternalFileLinks[];
    id: number;
    key_id: number;
    shared_files: ActivitySharedFile[];
    summary: string;
}
created?: string
createdUser?: User
id: number
notifications?: ActivityNotification[]
project?: ActivityProject
type: 3