com.alipay.api.response.AlipayOfflineProviderEquipmentAuthRemoveResponse 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.offline.provider.equipment.auth.remove response.
*
* @author auto create
* @since 1.0, 2017-03-29 17:01:40
*/
public class AlipayOfflineProviderEquipmentAuthRemoveResponse extends AlipayResponse {
private static final long serialVersionUID = 7634416741473427283L;
/**
* 被解绑的机具编号
*/
@ApiField("device_id")
private String deviceId;
/**
* 机具厂商PID
*/
@ApiField("merchant_pid")
private String merchantPid;
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceId( ) {
return this.deviceId;
}
public void setMerchantPid(String merchantPid) {
this.merchantPid = merchantPid;
}
public String getMerchantPid( ) {
return this.merchantPid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy