public class

SuggestPullRequestsRequest

extends Object
java.lang.Object
   ↳ com.atlassian.bitbucket.dashboard.SuggestPullRequestsRequest

Class Overview

A request for fetching pull request creation suggestions based on repository activity/history. The purpose and behaviour of each field is described on its accessor.

Summary

Nested Classes
class SuggestPullRequestsRequest.Builder  
Constants
int DEFAULT_LIMIT
Public Methods
@Nonnull Date getChangesSince()
All pull request suggestions are based on some form of activity/change that has occurred.
int getLimit()
Restricts the result set to return at most this many suggestions.
@Nonnull ApplicationUser getUser()
Suggestions will be based on push activity for the given user.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int DEFAULT_LIMIT

Constant Value: 5 (0x00000005)

Public Methods

@Nonnull public Date getChangesSince ()

All pull request suggestions are based on some form of activity/change that has occurred. This restricts pull request suggestions to be based on activity up to a certain time/date in the past.

public int getLimit ()

Restricts the result set to return at most this many suggestions. If no limit was set by calling limit(int) then the default DEFAULT_LIMIT will be used.

@Nonnull public ApplicationUser getUser ()

Suggestions will be based on push activity for the given user.