com.alipay.api.domain.VoucherAvailableScopeModify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 券可用范围可修改信息
*
* @author auto create
* @since 1.0, 2023-09-19 13:43:47
*/
public class VoucherAvailableScopeModify extends AlipayObject {
private static final long serialVersionUID = 3193474265822837979L;
/**
* 可用范围修改类型。
*/
@ApiField("modify_type")
private String modifyType;
/**
* 可用城市修改信息。
*/
@ApiField("order_voucher_available_city_code")
private OrderVoucherAvailableCityCodeModify orderVoucherAvailableCityCode;
/**
* 可用门店修改信息。
*/
@ApiField("order_voucher_available_shop")
private OrderVoucherAvailableShopModify orderVoucherAvailableShop;
public String getModifyType() {
return this.modifyType;
}
public void setModifyType(String modifyType) {
this.modifyType = modifyType;
}
public OrderVoucherAvailableCityCodeModify getOrderVoucherAvailableCityCode() {
return this.orderVoucherAvailableCityCode;
}
public void setOrderVoucherAvailableCityCode(OrderVoucherAvailableCityCodeModify orderVoucherAvailableCityCode) {
this.orderVoucherAvailableCityCode = orderVoucherAvailableCityCode;
}
public OrderVoucherAvailableShopModify getOrderVoucherAvailableShop() {
return this.orderVoucherAvailableShop;
}
public void setOrderVoucherAvailableShop(OrderVoucherAvailableShopModify orderVoucherAvailableShop) {
this.orderVoucherAvailableShop = orderVoucherAvailableShop;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy