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

me.chanjar.weixin.channel.bean.address.AddressInfoResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;

/**
 * 地址id 响应
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class AddressInfoResponse extends WxChannelBaseResponse {

  private static final long serialVersionUID = 8203853673226715673L;

  /** 地址详情 */
  @JsonProperty("address_detail")
  private AddressDetail addressDetail;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy