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

com.alipay.api.domain.OrderVoucherAvailableShopModify 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, 2023-09-19 13:43:47
 */
public class OrderVoucherAvailableShopModify extends AlipayObject {

	private static final long serialVersionUID = 6272166513855452356L;

	/**
	 * 商户全部门店可用。
	 */
	@ApiField("order_voucher_merchant_all_shop")
	private OrderVoucherMerchantAllShopModify orderVoucherMerchantAllShop;

	/**
	 * 券可使用的商业关系门店列表,列表中的门店id是调用接口alipay.business.relation.shop.create创建门店返回的real_shop_id。
	 */
	@ApiListField("real_shop_ids")
	@ApiField("string")
	private List realShopIds;

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

	public OrderVoucherMerchantAllShopModify getOrderVoucherMerchantAllShop() {
		return this.orderVoucherMerchantAllShop;
	}
	public void setOrderVoucherMerchantAllShop(OrderVoucherMerchantAllShopModify orderVoucherMerchantAllShop) {
		this.orderVoucherMerchantAllShop = orderVoucherMerchantAllShop;
	}

	public List getRealShopIds() {
		return this.realShopIds;
	}
	public void setRealShopIds(List realShopIds) {
		this.realShopIds = realShopIds;
	}

	public List getShopIds() {
		return this.shopIds;
	}
	public void setShopIds(List shopIds) {
		this.shopIds = shopIds;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy