@shortcut/client
    Preparing search index...

    Interface HistoryActionTaskCreate

    An action representing a Task being created.

    interface HistoryActionTaskCreate {
        action: "create";
        complete: boolean;
        deadline?: string;
        description: string;
        entity_type: string;
        group_mention_ids?: string[];
        id: number;
        mention_ids?: string[];
        owner_ids?: string[];
    }
    Index

    Properties

    action: "create"

    The action of the entity referenced.

    complete: boolean

    Whether or not the Task is complete.

    deadline?: string

    A timestamp that represent's the Task's deadline.

    description: string

    The description of the Task.

    entity_type: string

    The type of entity referenced.

    group_mention_ids?: string[]

    An array of Groups IDs that represent which have been mentioned in the Task.

    id: number

    The ID of the entity referenced.

    int64

    mention_ids?: string[]

    An array of Member IDs that represent who has been mentioned in the Task.

    owner_ids?: string[]

    An array of Member IDs that represent the Task's owners.