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

me.chanjar.weixin.cp.bean.oa.meeting.WxCpUserMeetingIdResult Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.oa.meeting;

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 java.io.Serializable;

/**
 * 为标签添加或移除用户结果对象类.
 *
 * @author wangmeng3486 created on  2023-01-31
 */
@Data
public class WxCpUserMeetingIdResult 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 WxCpUserMeetingIdResult fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpUserMeetingIdResult.class);
  }


  @SerializedName("meetingid_list")
  private String[] meetingIdList;

  @SerializedName("next_cursor")
  private String nextCursor;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy