@shortcut/client
    Preparing search index...

    Interface HistoryActionStoryLinkUpdate

    An action representing a Story Link being updated.

    interface HistoryActionStoryLinkUpdate {
        action: "update";
        changes: HistoryChangesStoryLink;
        entity_type: string;
        id: number;
        object_id: number;
        subject_id: number;
        verb: "blocks" | "duplicates" | "relates to";
    }
    Index

    Properties

    action: "update"

    The action of the entity referenced.

    The changes that have occurred as a result of the action.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64

    object_id: number

    The Story ID of the object Story.

    int64

    subject_id: number

    The Story ID of the subject Story.

    int64

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

    The verb describing the link's relationship.