
com.alipay.api.response.AlipayDataDataserviceCodeRecoResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.AlipayCodeRecoResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.data.dataservice.code.reco response.
*
* @author auto create
* @since 1.0, 2016-06-02 14:27:04
*/
public class AlipayDataDataserviceCodeRecoResponse extends AlipayResponse {
private static final long serialVersionUID = 7145645958167314255L;
/**
* 识别结果
*/
@ApiField("result")
private AlipayCodeRecoResult result;
public void setResult(AlipayCodeRecoResult result) {
this.result = result;
}
public AlipayCodeRecoResult getResult( ) {
return this.result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy