com.alipay.api.response.AlipayTrustUserTokenGetResponse 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.token.get response.
*
* @author auto create
* @since 1.0, 2015-05-06 18:13:09
*/
public class AlipayTrustUserTokenGetResponse extends AlipayResponse {
private static final long serialVersionUID = 5251216833327537468L;
/**
* 访问令牌
*/
@ApiField("access_token")
private String accessToken;
/**
* 本字段已废弃
*/
@ApiField("refresh_token")
private String refreshToken;
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public String getAccessToken( ) {
return this.accessToken;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
public String getRefreshToken( ) {
return this.refreshToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy