com.alipay.api.response.AlipayMobilePublicTemplateMessageQueryResponse 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.mobile.public.template.message.query response.
*
* @author auto create
* @since 1.0, 2017-08-02 17:35:28
*/
public class AlipayMobilePublicTemplateMessageQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4275989771294456512L;
/**
* 结果值
*/
@ApiField("result")
private String result;
public void setResult(String result) {
this.result = result;
}
public String getResult( ) {
return this.result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy