com.alipay.api.response.AlipayFundWalletTemplateConfirmResponse 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.AlipayResponse;
/**
* ALIPAY API: alipay.fund.wallet.template.confirm response.
*
* @author auto create
* @since 1.0, 2024-08-16 10:47:07
*/
public class AlipayFundWalletTemplateConfirmResponse extends AlipayResponse {
private static final long serialVersionUID = 7159922182462518184L;
/**
* 钱包场景
*/
@ApiField("biz_scene")
private String bizScene;
/**
* 销售产品码
*/
@ApiField("product_code")
private String productCode;
/**
* 钱包模版id
*/
@ApiField("wallet_template_id")
private String walletTemplateId;
public void setBizScene(String bizScene) {
this.bizScene = bizScene;
}
public String getBizScene( ) {
return this.bizScene;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getProductCode( ) {
return this.productCode;
}
public void setWalletTemplateId(String walletTemplateId) {
this.walletTemplateId = walletTemplateId;
}
public String getWalletTemplateId( ) {
return this.walletTemplateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy