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

me.chanjar.weixin.qidian.bean.dial.IVRDialResponse Maven / Gradle / Ivy

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

import lombok.Data;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
import me.chanjar.weixin.qidian.bean.common.QidianResponse;
import me.chanjar.weixin.qidian.util.json.WxQidianGsonBuilder;

@Data
public class IVRDialResponse extends QidianResponse {
    private String callid;

    public static IVRDialResponse fromJson(String json) {
        return WxGsonBuilder.create().fromJson(json, IVRDialResponse.class);
    }

    @Override
    public String toString() {
        return WxQidianGsonBuilder.create().toJson(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy