@shortcut/client
    Preparing search index...

    Interface Repository

    interface Repository {
        branches?: NestedBranchSlimList;
        commits?: NestedCommitSlimList;
        created_at?: string;
        entity_type?: "repository";
        external_url?: string;
        full_name?: string;
        id?: number;
        name?: string;
        pull_requests?: NestedPullRequestSlimList;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    A list of Git branches attached to the Story.

    A list of commits attached to the Story.

    created_at?: string

    The time/date the Repository was created.

    date-time

    entity_type?: "repository"

    The type of this entity.

    external_url?: string

    The URL of the Repository in the VCS provider.

    full_name?: string

    The full name of the Repository (e.g. owner/repo-name).

    id?: number

    The unique ID of the Repository.

    int64

    name?: string

    The name of the Repository.

    A list of Pull/Merge Requests attached to the Story.

    updated_at?: string

    The time/date the Repository was last updated.

    date-time

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$