interface PartiallyUpdateEpic {
    color?: {
        key?: string;
    };
    done?: boolean;
    epicIdOrKey: string;
    name?: string;
    summary?: string;
}

Properties

color?: {
    key?: string;
}

Type declaration

  • Optional key?: string
done?: boolean
epicIdOrKey: string

The id or key of the epic to update.

name?: string
summary?: string