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

com.alipay.api.domain.MerchantBrandListResult Maven / Gradle / Ivy

package com.alipay.api.domain;

import java.util.List;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

/**
 * BrandResult的列表
 *
 * @author auto create
 * @since 1.0, 2020-10-21 11:44:24
 */
public class MerchantBrandListResult extends AlipayObject {

	private static final long serialVersionUID = 8684525597688172849L;

	/**
	 * 商户已有品牌
	 */
	@ApiListField("brand_list_result")
	@ApiField("brand_result")
	private List brandListResult;

	public List getBrandListResult() {
		return this.brandListResult;
	}
	public void setBrandListResult(List brandListResult) {
		this.brandListResult = brandListResult;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy