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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class LeaveGroupRequest extends BaseRequest {
    @JsonProperty("ConsumerId")
    private String consumerId;

    @JsonProperty("VersionId")
    private long versionId;

    public LeaveGroupRequest() {
        setAction("leaveGroup");
    }

    public String getConsumerId() {
        return consumerId;
    }

    public LeaveGroupRequest setConsumerId(String consumerId) {
        this.consumerId = consumerId;
        return this;
    }

    public long getVersionId() {
        return versionId;
    }

    public LeaveGroupRequest setVersionId(long versionId) {
        this.versionId = versionId;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy