com.alipay.api.response.AlipayEcoMycarParkingLotbarcodeCreateResponse 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
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.mycar.parking.lotbarcode.create response.
*
* @author auto create
* @since 1.0, 2017-08-25 17:10:44
*/
public class AlipayEcoMycarParkingLotbarcodeCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 1774449717178258136L;
/**
* 返回二维码链接地址
*/
@ApiField("qrcode_url")
private String qrcodeUrl;
/**
* 返回状态:1为成功,0为失败
*/
@ApiField("status")
private String status;
public void setQrcodeUrl(String qrcodeUrl) {
this.qrcodeUrl = qrcodeUrl;
}
public String getQrcodeUrl( ) {
return this.qrcodeUrl;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus( ) {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy