@shortcut/client
    Preparing search index...

    Interface PullRequest

    interface PullRequest {
        branch?: BranchSlim;
        closed?: boolean;
        created_at?: string;
        draft?: boolean;
        entity_type?: "pull-request";
        external_id?: string;
        external_url?: string;
        id?: number;
        repository?: RepositorySlim;
        stories?: NestedStorySlimList;
        target_branch?: BranchSlim;
        title?: string;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    branch?: BranchSlim
    closed?: boolean

    True/False boolean indicating whether the VCS Pull Request has been closed.

    created_at?: string

    The time/date the Pull Request was created.

    date-time

    draft?: boolean

    True/False boolean indicating whether the Pull Request is in draft state.

    entity_type?: "pull-request"

    The type of this entity.

    external_id?: string

    The Pull Request's id in the VCS provider.

    external_url?: string

    The URL for the Pull Request in the VCS provider.

    id?: number

    The unique ID of the Pull Request.

    int64

    repository?: RepositorySlim

    The Repository that contains the Commit.

    A list of Stories associated with this Project.

    target_branch?: BranchSlim
    title?: string

    The title of the Pull Request.

    updated_at?: string

    The time/date the Pull Request was last updated.

    date-time

    uri?: string

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

    2048

    ^https?://.+$