com.alipay.api.response.AlipayFundWalletTemplateCreateResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.fund.wallet.template.create response.
*
* @author auto create
* @since 1.0, 2024-08-16 10:47:07
*/
public class AlipayFundWalletTemplateCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 8655986564299937552L;
/**
* 商户钱包模版id
*/
@ApiField("wallet_template_id")
private String walletTemplateId;
public void setWalletTemplateId(String walletTemplateId) {
this.walletTemplateId = walletTemplateId;
}
public String getWalletTemplateId( ) {
return this.walletTemplateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy