
com.alipay.api.domain.AlipaySocialBaseChatGmemberConfirmModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 判断支付宝群成员是否在群中
*
* @author auto create
* @since 1.0, 2017-06-29 17:55:31
*/
public class AlipaySocialBaseChatGmemberConfirmModel extends AlipayObject {
private static final long serialVersionUID = 6748888698971932337L;
/**
* 业务类型,申请接入时和我们申请,用于统计和限流
*/
@ApiField("biz_type")
private String bizType;
/**
* 用户所在的群id
*/
@ApiField("group_id")
private String groupId;
/**
* 要判断的用户id
*/
@ApiField("user_id")
private String userId;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy