com.alipay.api.response.AlipayOpenAuthAppApplyResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.auth.app.apply response.
*
* @author auto create
* @since 1.0, 2023-05-29 23:35:37
*/
public class AlipayOpenAuthAppApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 8145965547452965557L;
/**
* 应用授权令牌
*/
@ApiField("app_auth_token")
private String appAuthToken;
/**
* 刷新令牌
*/
@ApiField("app_refresh_token")
private String appRefreshToken;
public void setAppAuthToken(String appAuthToken) {
this.appAuthToken = appAuthToken;
}
public String getAppAuthToken( ) {
return this.appAuthToken;
}
public void setAppRefreshToken(String appRefreshToken) {
this.appRefreshToken = appRefreshToken;
}
public String getAppRefreshToken( ) {
return this.appRefreshToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy