@shortcut/client
    Preparing search index...

    Interface Repository

    Repository refers to a VCS repository.

    interface Repository {
        created_at?: string | null;
        entity_type: string;
        external_id?: string | null;
        full_name?: string | null;
        id?: number | null;
        name?: string | null;
        type: "github" | "gitlab" | "bitbucket";
        updated_at?: string | null;
        url?: string | null;
    }
    Index

    Properties

    created_at?: string | null

    The time/date the Repository was created.

    date-time

    entity_type: string

    A string description of this resource.

    external_id?: string | null

    The VCS unique identifier for the Repository.

    full_name?: string | null

    The full name of the VCS repository.

    id?: number | null

    The ID associated to the VCS repository in Shortcut.

    int64

    name?: string | null

    The shorthand name of the VCS repository.

    type: "github" | "gitlab" | "bitbucket"

    The VCS provider for the Repository.

    updated_at?: string | null

    The time/date the Repository was updated.

    date-time

    url?: string | null

    The URL of the Repository.