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

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

The newest version!
package com.aliyun.datahub.client.model;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class SplitShardResult extends BaseResult {
    @JsonProperty("NewShards")
    private List newShards;

    public List getNewShards() {
        return newShards;
    }

    public void setNewShards(List newShards) {
        this.newShards = newShards;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy