com.alipay.api.domain.AlipayMerchantGroupGroupinstanceinfoQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 商家群群详情查询
*
* @author auto create
* @since 1.0, 2024-09-30 21:27:17
*/
public class AlipayMerchantGroupGroupinstanceinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 1834413938516846648L;
/**
* 群id
*/
@ApiField("group_instance_id")
private String groupInstanceId;
/**
* 是否需要返回群成员
*/
@ApiField("need_member")
private Boolean needMember;
public String getGroupInstanceId() {
return this.groupInstanceId;
}
public void setGroupInstanceId(String groupInstanceId) {
this.groupInstanceId = groupInstanceId;
}
public Boolean getNeedMember() {
return this.needMember;
}
public void setNeedMember(Boolean needMember) {
this.needMember = needMember;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy