com.huaweicloud.dis.iface.consumergroup.request.ConsumerGroupRequest Maven / Gradle / Ivy
The newest version!
package com.huaweicloud.dis.iface.consumergroup.request;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ConsumerGroupRequest
{
@JsonProperty("project_id")
protected String projectId;
@JsonProperty("stream_name")
protected String streamName;
@JsonProperty("group_id")
protected String groupId;
@JsonProperty("subscribe_token")
protected String token;
public String getStreamName()
{
return streamName;
}
public void setStreamName(String streamName)
{
this.streamName = streamName;
}
public String getGroupId()
{
return groupId;
}
public void setGroupId(String groupId)
{
this.groupId = groupId;
}
public String getProjectId()
{
return projectId;
}
public void setProjectId(String projectId)
{
this.projectId = projectId;
}
public String getToken()
{
return token;
}
public void setToken(String token)
{
this.token = token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy