com.alipay.api.response.AlipayUserAuthZhimaperInternalApplyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.user.auth.zhimaper.internal.apply response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:14
*/
public class AlipayUserAuthZhimaperInternalApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 4585237161557863192L;
/**
* 访问令牌。通过该令牌调用需要授权类接口
*/
@ApiField("access_token")
private String accessToken;
/**
* 令牌类型,permanent表示返回的access_token和refresh_token永久有效,不受expires_in和re_expires_in限制,默认是空,即受expires_in和re_expires_in限制的时效性令牌
*/
@ApiField("auth_token_type")
private String authTokenType;
/**
* 刷新令牌。通过该令牌可以刷新access_token
*/
@ApiField("refresh_token")
private String refreshToken;
public void setAccessToken(String accessToken) {
this.accessToken = accessToken;
}
public String getAccessToken( ) {
return this.accessToken;
}
public void setAuthTokenType(String authTokenType) {
this.authTokenType = authTokenType;
}
public String getAuthTokenType( ) {
return this.authTokenType;
}
public void setRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}
public String getRefreshToken( ) {
return this.refreshToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy