
com.alipay.api.domain.AlipayMarketingDecodeData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 扫码存放码值的类型
*
* @author auto create
* @since 1.0, 2017-04-28 11:12:12
*/
public class AlipayMarketingDecodeData extends AlipayObject {
private static final long serialVersionUID = 8894819756872644756L;
/**
* 钱包二维码码值
*/
@ApiField("code")
private String code;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy