com.alipay.api.response.AlipayUserSocialinfoQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.domain.SocialInfoView;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.user.socialinfo.query response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:34:54
*/
public class AlipayUserSocialinfoQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1667391638697226931L;
/**
* 头像、昵称信息视图【注意】如果入参中某一userId不存在,返回的视图列表中将不包含该userId对应视图。(举例:入参里10个userId,其中1个userId不存在,则出参列表里有9个视图)
*/
@ApiListField("social_info_views")
@ApiField("social_info_view")
private List socialInfoViews;
public void setSocialInfoViews(List socialInfoViews) {
this.socialInfoViews = socialInfoViews;
}
public List getSocialInfoViews( ) {
return this.socialInfoViews;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy