@shortcut/client
    Preparing search index...

    Interface Repository

    Repository refers to a VCS repository.

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

    Properties

    created_at?: null | string

    The time/date the Repository was created.

    date-time

    entity_type: string

    A string description of this resource.

    external_id?: null | string

    The VCS unique identifier for the Repository.

    full_name?: null | string

    The full name of the VCS repository.

    id?: null | number

    The ID associated to the VCS repository in Shortcut.

    int64

    name?: null | string

    The shorthand name of the VCS repository.

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

    The VCS provider for the Repository.

    updated_at?: null | string

    The time/date the Repository was updated.

    date-time

    url?: null | string

    The URL of the Repository.