com.alipay.api.response.AlipayEcoMycarDataExternalSendResponse 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.data.external.send response.
*
* @author auto create
* @since 1.0, 2016-05-12 10:25:11
*/
public class AlipayEcoMycarDataExternalSendResponse extends AlipayResponse {
private static final long serialVersionUID = 4391744263331828519L;
/**
* 20
*/
@ApiField("external_system_name")
private String externalSystemName;
/**
* outter_response
*/
@ApiField("process_result")
private String processResult;
public void setExternalSystemName(String externalSystemName) {
this.externalSystemName = externalSystemName;
}
public String getExternalSystemName( ) {
return this.externalSystemName;
}
public void setProcessResult(String processResult) {
this.processResult = processResult;
}
public String getProcessResult( ) {
return this.processResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy