All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.coinbase.prime.model.common.Pagination Maven / Gradle / Ivy

/*
 * Copyright 2024-present Coinbase Global, Inc.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package com.coinbase.prime.model.common;

import com.coinbase.prime.utils.Utils;
import com.fasterxml.jackson.annotation.JsonProperty;

public class Pagination {
    @JsonProperty("next_cursor")
    private String nextCursor;

    @JsonProperty("sort_direction")
    private String sortDirection;

    @JsonProperty("has_next")
    private boolean hasNext;

    public Pagination() {}

    public Pagination(Builder builder) {
        this.nextCursor = builder.nextCursor;
        this.sortDirection = builder.sortDirection;
        this.hasNext = builder.hasNext;
    }


    public String getNextCursor() {
        return nextCursor;
    }

    public void setNextCursor(String nextCursor) {
        this.nextCursor = nextCursor;
    }

    public String getSortDirection() {
        return sortDirection;
    }

    public void setSortDirection(String sortDirection) {
        this.sortDirection = sortDirection;
    }

    public boolean isHasNext() {
        return hasNext;
    }

    public void setHasNext(boolean hasNext) {
        this.hasNext = hasNext;
    }

    public static class Builder {
        private String nextCursor;
        private String sortDirection;
        private boolean hasNext;

        public Builder() {}

        public Builder nextCursor(String nextCursor) {
            this.nextCursor = nextCursor;
            return this;
        }

        public Builder sortDirection(String sortDirection) {
            this.sortDirection = sortDirection;
            return this;
        }

        public Builder hasNext(boolean hasNext) {
            this.hasNext = hasNext;
            return this;
        }

        public Pagination build() {
            return new Pagination(this);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy