com.alipay.api.response.AlipayMarketingActivityOrdervoucherModifyResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.VoucherAvailableScopeResultInfo;
import com.alipay.api.domain.OrderVoucherUseRuleResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.activity.ordervoucher.modify response.
*
* @author auto create
* @since 1.0, 2024-04-25 14:07:01
*/
public class AlipayMarketingActivityOrdervoucherModifyResponse extends AlipayResponse {
private static final long serialVersionUID = 5824949366424881341L;
/**
* 可用范围结果
*/
@ApiField("voucher_available_scope_result_info")
private VoucherAvailableScopeResultInfo voucherAvailableScopeResultInfo;
/**
* 核销规则请求结果
*/
@ApiField("voucher_use_rule_result")
private OrderVoucherUseRuleResult voucherUseRuleResult;
public void setVoucherAvailableScopeResultInfo(VoucherAvailableScopeResultInfo voucherAvailableScopeResultInfo) {
this.voucherAvailableScopeResultInfo = voucherAvailableScopeResultInfo;
}
public VoucherAvailableScopeResultInfo getVoucherAvailableScopeResultInfo( ) {
return this.voucherAvailableScopeResultInfo;
}
public void setVoucherUseRuleResult(OrderVoucherUseRuleResult voucherUseRuleResult) {
this.voucherUseRuleResult = voucherUseRuleResult;
}
public OrderVoucherUseRuleResult getVoucherUseRuleResult( ) {
return this.voucherUseRuleResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy