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

me.chanjar.weixin.cp.bean.license.order.WxCpTpLicenseCreateOrderResp Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

/**
 * 订单创建结果
 * 文档地址:https://developer.work.weixin.qq.com/document/path/95644
 *
 * @author Totoro  created on  2022-6-27 11:26:36
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class WxCpTpLicenseCreateOrderResp extends WxCpBaseResp {
  private static final long serialVersionUID = 6644560301282598903L;

  @SerializedName("order_id")
  private String orderId;


  /**
   * From json wx cp tp license create order resp.
   *
   * @param json the json
   * @return the wx cp tp license create order resp
   */
  public static WxCpTpLicenseCreateOrderResp fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpTpLicenseCreateOrderResp.class);
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy