Class PullRequest

    • Method Detail

      • id

        public abstract int id()
      • version

        public abstract int version()
      • title

        @Nullable
        public abstract String title()
      • description

        @Nullable
        public abstract String description()
      • state

        @Nullable
        public abstract String state()
      • open

        public abstract boolean open()
      • closed

        public abstract boolean closed()
      • createdDate

        public abstract long createdDate()
      • updatedDate

        public abstract long updatedDate()
      • fromRef

        @Nullable
        public abstract Reference fromRef()
      • toRef

        @Nullable
        public abstract Reference toRef()
      • locked

        public abstract boolean locked()
      • author

        @Nullable
        public abstract Person author()
      • reviewers

        public abstract List<Person> reviewers()
      • participants

        public abstract List<Person> participants()
      • properties

        @Nullable
        public abstract Properties properties()