interface ActivityTypeIssueMultiUpdated {
    content: {
        changes: {
            field:
                | "assigner"
                | "component"
                | "limitDate"
                | "milestone"
                | "priority"
                | "resolution"
                | "status"
                | "version"
                | "issueType";
            new_value: string;
            type: "standard";
        }[];
        comment: {
            content: string;
        };
        link: {
            comment: ActivityTypeComment;
            id: number;
            key_id: number;
            title: string;
        }[];
        tx_id: number;
    };
    created?: string;
    createdUser?: User;
    id: number;
    notifications?: ActivityNotification[];
    project?: ActivityProject;
    type: 14;
}

Hierarchy

  • ActivityBase
    • ActivityTypeIssueMultiUpdated

Properties

content: {
    changes: {
        field:
            | "assigner"
            | "component"
            | "limitDate"
            | "milestone"
            | "priority"
            | "resolution"
            | "status"
            | "version"
            | "issueType";
        new_value: string;
        type: "standard";
    }[];
    comment: {
        content: string;
    };
    link: {
        comment: ActivityTypeComment;
        id: number;
        key_id: number;
        title: string;
    }[];
    tx_id: number;
}
created?: string
createdUser?: User
id: number
notifications?: ActivityNotification[]
project?: ActivityProject
type: 14