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

com.aliyun.datahub.client.model.ListShardResult Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.model;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class ListShardResult extends BaseResult {
    @JsonProperty("Shards")
    List shards;

    @JsonProperty("Protocol")
    private String protocol = "http1.1";

    @JsonProperty("Interval")
    private long intervalMs = 300000;

    public List getShards() {
        return shards;
    }

    public void setShards(List shards) {
        this.shards = shards;
    }

    public String getProtocol() {
        return protocol;
    }

    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }

    public long getIntervalMs() {
        return intervalMs;
    }

    public void setIntervalMs(long intervalMs) {
        this.intervalMs = intervalMs;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy