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

com.aliyun.datahub.client.impl.request.ListTopicSchemaRequest Maven / Gradle / Ivy

The newest version!
package com.aliyun.datahub.client.impl.request;

import com.fasterxml.jackson.annotation.JsonProperty;

public class ListTopicSchemaRequest extends BaseRequest {
    @JsonProperty("PageNumber")
    private int pageNumber;

    @JsonProperty("PageSize")
    private int pageSize;

    public ListTopicSchemaRequest() {
        setAction("ListSchema");
    }

    public int getPageNumber() {
        return pageNumber;
    }

    public ListTopicSchemaRequest setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
        return this;
    }

    public int getPageSize() {
        return pageSize;
    }

    public ListTopicSchemaRequest setPageSize(int pageSize) {
        this.pageSize = pageSize;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy