@shortcut/client
    Preparing search index...

    Interface TypedStoryLink

    The type of Story Link. The string can be subject or object.

    interface TypedStoryLink {
        created_at: string;
        entity_type: string;
        id: number;
        object_id: number;
        subject_id: number;
        subject_workflow_state_id: number;
        type: string;
        updated_at: string;
        verb: string;
    }
    Index

    Properties

    created_at: string

    The time/date when the Story Link was created.

    date-time

    entity_type: string

    A string description of this resource.

    id: number

    The unique identifier of the Story Link.

    int64

    object_id: number

    The ID of the object Story.

    int64

    subject_id: number

    The ID of the subject Story.

    int64

    subject_workflow_state_id: number

    The workflow state of the "subject" story.

    int64

    type: string

    This indicates whether the Story is the subject or object in the Story Link.

    updated_at: string

    The time/date when the Story Link was last updated.

    date-time

    verb: string

    How the subject Story acts on the object Story. This can be "blocks", "duplicates", or "relates to".