![JAR search and dependency download from the Maven repository](/logo.png)
com.alipay.api.domain.AppItemVoucherQueryDeductInfo 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, 2024-08-08 18:12:19
*/
public class AppItemVoucherQueryDeductInfo extends AlipayObject {
private static final long serialVersionUID = 1346954185896889398L;
/**
* 满减券优惠
*/
@ApiField("app_item_fix_voucher_info")
private AppItemFixQueryVoucherInfo appItemFixVoucherInfo;
/**
* 优惠类型
*/
@ApiField("promo_type")
private String promoType;
public AppItemFixQueryVoucherInfo getAppItemFixVoucherInfo() {
return this.appItemFixVoucherInfo;
}
public void setAppItemFixVoucherInfo(AppItemFixQueryVoucherInfo appItemFixVoucherInfo) {
this.appItemFixVoucherInfo = appItemFixVoucherInfo;
}
public String getPromoType() {
return this.promoType;
}
public void setPromoType(String promoType) {
this.promoType = promoType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy