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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class ListMetaLogRequest extends BaseRequest {
    @JsonProperty("PageIndex")
    private long pageIndex;
    @JsonProperty("PageSize")
    private long pageSize;

    public ListMetaLogRequest() {
        this.pageIndex = 1;
        this.pageSize = 10;
        setAction("listmetalog");
    }

    public long getPageIndex() {
        return pageIndex;
    }

    public ListMetaLogRequest setPageIndex(long pageIndex) {
        this.pageIndex = pageIndex;
        return this;
    }

    public long getPageSize() {
        return pageSize;
    }

    public ListMetaLogRequest setPageSize(long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy