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

me.chanjar.weixin.channel.bean.order.TelNumberExtInfo Maven / Gradle / Ivy

package me.chanjar.weixin.channel.bean.order;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

/**
 * 联系方式信息
 *
 * @author imyzt
 */
@Data
public class TelNumberExtInfo {

  /**
   * 脱敏手机号
   */
  @JsonProperty("real_tel_number")
  private String realTelNumber;

  /**
   * 完整的虚拟号码
   */
  @JsonProperty("virtual_tel_number")
  private String virtualTelNumber;

  /**
   * 主动兑换的虚拟号码过期时间
   */
  @JsonProperty("virtual_tel_expire_time")
  private Long virtualTelExpireTime;

  /**
   * 主动兑换虚拟号码次数
   */
  @JsonProperty("get_virtual_tel_cnt")
  private Long getVirtualTelCnt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy