com.alipay.api.response.AlipayTrustUserAuthSendResponse 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.trust.user.auth.send response.
*
* @author auto create
* @since 1.0, 2015-05-15 09:36:22
*/
public class AlipayTrustUserAuthSendResponse extends AlipayResponse {
private static final long serialVersionUID = 3793887316578917637L;
/**
* 当授权通知发送成功时,为T;否则用业务错误码表示
*/
@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