Class PullRequest

    • Method Detail

      • id

        public abstract int id()
      • version

        public abstract int version()
      • title

        @Nullable
        public abstract java.lang.String title()
      • description

        @Nullable
        public abstract java.lang.String description()
      • state

        @Nullable
        public abstract java.lang.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 java.util.List<Person> reviewers()
      • participants

        public abstract java.util.List<Person> participants()
      • properties

        @Nullable
        public abstract Properties properties()
      • create

        public static PullRequest create​(int id,
                                         int version,
                                         java.lang.String title,
                                         java.lang.String description,
                                         java.lang.String state,
                                         boolean open,
                                         boolean closed,
                                         long createdDate,
                                         long updatedDate,
                                         Reference fromRef,
                                         Reference toRef,
                                         boolean locked,
                                         Person author,
                                         java.util.List<Person> reviewers,
                                         java.util.List<Person> participants,
                                         Properties properties,
                                         Links links,
                                         java.util.List<Error> errors)