adapter/api/src/main/java/org/apache/rocketmq/eventbridge/adapter/api/dto/apidestination/ListApiDestinationsRequest.java [40:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Min(value = 0, message = "The limit size of page is invalid, which must greater than 0 and less than [{0}].")
    @SerializedName("MaxResults")
    private Integer maxResults;

    @SerializedName("NextToken")
    private String nextToken;

    public void checkMaxResultsAndNextToken() {
        if (StringUtils.isBlank(this.getNextToken())) {
            this.setNextToken("0");
        }
        if (this.getMaxResults() == null) {
            this.setMaxResults(10);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



adapter/api/src/main/java/org/apache/rocketmq/eventbridge/adapter/api/dto/connection/ListConnectionRequest.java [36:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Min(value = 0, message = "The limit size of page is invalid, which must greater than 0 and less than [{0}].")
    @SerializedName("MaxResults")
    private Integer maxResults;

    @SerializedName("NextToken")
    private String nextToken;

    public void checkMaxResultsAndNextToken() {
        if (StringUtils.isBlank(this.getNextToken())) {
            this.setNextToken("0");
        }
        if (this.getMaxResults() == null) {
            this.setMaxResults(10);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



