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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class OpenSubscriptionSessionRequest extends BaseRequest {
    @JsonProperty("ShardIds")
    private List shardIds;

    public OpenSubscriptionSessionRequest() {
        setAction("open");
    }

    public List getShardIds() {
        return shardIds;
    }

    public OpenSubscriptionSessionRequest setShardIds(List shardIds) {
        this.shardIds = shardIds;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy