com.alipay.api.response.AlipayMobilePublicContactFollowListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.mobile.public.contact.follow.list response.
*
* @author auto create
* @since 1.0, 2016-12-19 20:51:46
*/
public class AlipayMobilePublicContactFollowListResponse extends AlipayResponse {
private static final long serialVersionUID = 1198983985525826664L;
/**
* 返回结果码,如200,标识成功
*/
@ApiField("code")
private String code;
/**
* 联系人关注者列表
*/
@ApiListField("contact_follow_list")
@ApiField("string")
private List contactFollowList;
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setContactFollowList(List contactFollowList) {
this.contactFollowList = contactFollowList;
}
public List getContactFollowList( ) {
return this.contactFollowList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy