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

com.alipay.api.domain.VoucherAvailableGeographyShopInfo 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;

/**
 * 可用门店
 *
 * @author auto create
 * @since 1.0, 2024-06-24 21:42:14
 */
public class VoucherAvailableGeographyShopInfo extends AlipayObject {

	private static final long serialVersionUID = 7771434568411746794L;

	/**
	 * 全部门店可用
	 */
	@ApiField("available_geography_all_shop")
	private VoucherAvailableGeographyAllShopInfo availableGeographyAllShop;

	/**
	 * 代运营商业关系门店列表,列表中的门店id是调用接口alipay.business.relation.shop.create创建门店返回的real_shop_id 接口参数是列表类型。
	 */
	@ApiListField("available_real_shop_ids")
	@ApiField("string")
	private List availableRealShopIds;

	/**
	 * 券可使用的门店列表。列表中的门店id是通过调用接口ant.merchant.expand.shop.create创建门店返回的支付宝门店id 接口参数是列表类型。
	 */
	@ApiListField("available_shop_ids")
	@ApiField("string")
	private List availableShopIds;

	public VoucherAvailableGeographyAllShopInfo getAvailableGeographyAllShop() {
		return this.availableGeographyAllShop;
	}
	public void setAvailableGeographyAllShop(VoucherAvailableGeographyAllShopInfo availableGeographyAllShop) {
		this.availableGeographyAllShop = availableGeographyAllShop;
	}

	public List getAvailableRealShopIds() {
		return this.availableRealShopIds;
	}
	public void setAvailableRealShopIds(List availableRealShopIds) {
		this.availableRealShopIds = availableRealShopIds;
	}

	public List getAvailableShopIds() {
		return this.availableShopIds;
	}
	public void setAvailableShopIds(List availableShopIds) {
		this.availableShopIds = availableShopIds;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy