me.chanjar.weixin.cp.bean.oa.meeting.WxCpMeetingUpdateResult Maven / Gradle / Ivy
package me.chanjar.weixin.cp.bean.oa.meeting;
import com.google.common.base.Splitter;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
import org.apache.commons.lang3.StringUtils;
import java.io.Serializable;
import java.util.Collections;
import java.util.List;
/**
* 为标签添加或移除用户结果对象类.
*
* @author wangmeng3486 created on 2023-01-31
*/
@Data
public class WxCpMeetingUpdateResult extends WxCpBaseResp implements Serializable {
private static final long serialVersionUID = -4993287594652231097L;
@Override
public String toString() {
return WxCpGsonBuilder.create().toJson(this);
}
/**
* From json wx cp tag add or remove users result.
*
* @param json the json
* @return the wx cp tag add or remove users result
*/
public static WxCpMeetingUpdateResult fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpMeetingUpdateResult.class);
}
@SerializedName("excess_users")
private String[] excessUsers;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy