@shortcut/client
    Preparing search index...

    Interface HistoryActionStoryLinkDelete

    An action representing a Story Link being deleted.

    interface HistoryActionStoryLinkDelete {
        action: "delete";
        entity_type: string;
        id: number;
        object_id?: null | number;
        subject_id?: null | number;
        verb: "blocks" | "duplicates" | "relates to";
    }
    Index

    Properties

    action: "delete"

    The action of the entity referenced.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64

    object_id?: null | number

    The Story ID of the object Story.

    int64

    subject_id?: null | number

    The Story ID of the subject Story.

    int64

    verb: "blocks" | "duplicates" | "relates to"

    The verb describing the link's relationship.