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

me.chanjar.weixin.mp.bean.result.WxMpMassSpeedGetResult Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.mp.bean.result;

import lombok.Data;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;

import java.io.Serializable;

/**
 * 
 * 获取群发速度
 * https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Batch_Sends_and_Originality_Checks.html#9
 * speed	realspeed
 * 0	80w/分钟
 * 1	60w/分钟
 * 2	45w/分钟
 * 3	30w/分钟
 * 4	10w/分钟
 * 
*/ @Data public class WxMpMassSpeedGetResult implements Serializable { private static final long serialVersionUID = -6478157575168068334L; private Integer speed; private Integer realspeed; public static WxMpMassSpeedGetResult fromJson(String json) { return WxMpGsonBuilder.create().fromJson(json, WxMpMassSpeedGetResult.class); } @Override public String toString() { return WxMpGsonBuilder.create().toJson(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy