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

com.alipay.api.response.AlipayBusinessRelationShopmemberQueryResponse 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.ShopMemberInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.business.relation.shopmember.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-11-12 13:40:36
 */
public class AlipayBusinessRelationShopmemberQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7467225919262169738L;

	/** 
	 * 商业关系中的门店收单信息
	 */
	@ApiListField("shop_member_infos")
	@ApiField("shop_member_info")
	private List shopMemberInfos;

	public void setShopMemberInfos(List shopMemberInfos) {
		this.shopMemberInfos = shopMemberInfos;
	}
	public List getShopMemberInfos( ) {
		return this.shopMemberInfos;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy