@shortcut/client
    Preparing search index...

    Interface Branch

    The entity for this response.

    interface Branch {
        created_at?: string;
        deleted?: boolean;
        entity_type?: "branch";
        external_url?: string;
        id?: number;
        name?: string;
        pull_requests?: NestedPullRequestSlimList;
        repository?: RepositorySlim;
        stories?: NestedStorySlimList;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    created_at?: string

    The time/date the Branch was created.

    date-time

    deleted?: boolean

    Boolean indicating whether the Branch has been deleted.

    entity_type?: "branch"

    The type of this entity.

    external_url?: string

    The URL of the Branch in the VCS provider.

    id?: number

    The unique ID of the Branch.

    int64

    name?: string

    The name of the Branch.

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

    repository?: RepositorySlim

    The Repository that contains the Commit.

    A list of Stories associated with this Project.

    updated_at?: string

    The time/date the Branch was last updated.

    date-time

    uri?: string

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

    2048

    ^https?://.+$