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

com.alipay.api.response.AlipayCommerceSportsGamesFriendlistQueryResponse Maven / Gradle / Ivy

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.FriendVO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.commerce.sports.games.friendlist.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-03-01 16:34:27
 */
public class AlipayCommerceSportsGamesFriendlistQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1643642586686662378L;

	/** 
	 * 好友信息集合
	 */
	@ApiListField("friend_list")
	@ApiField("friend_v_o")
	private List friendList;

	/** 
	 * 用户open_id
	 */
	@ApiField("self_open_id")
	private String selfOpenId;

	public void setFriendList(List friendList) {
		this.friendList = friendList;
	}
	public List getFriendList( ) {
		return this.friendList;
	}

	public void setSelfOpenId(String selfOpenId) {
		this.selfOpenId = selfOpenId;
	}
	public String getSelfOpenId( ) {
		return this.selfOpenId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy