org.sdn.api.response.OpenAuthResponse Maven / Gradle / Ivy
The newest version!
package org.sdn.api.response;
/**
* @author gaosong
* @date 018/10/15.
*/
public class OpenAuthResponse extends OpenResponse {
private static final long serialVersionUID = 8282453224674799888L;
private String access_token;
private String refresh_token;
private String expires_in;
private String auth_event;
private String app_name;
private String app_type;
private int socketTimeout;
public String getAccess_token() {
return access_token;
}
public void setAccess_token(String access_token) {
this.access_token = access_token;
}
public String getRefresh_token() {
return refresh_token;
}
public void setRefresh_token(String refresh_token) {
this.refresh_token = refresh_token;
}
public String getExpires_in() {
return expires_in;
}
public void setExpires_in(String expires_in) {
this.expires_in = expires_in;
}
public String getAuth_event() {
return auth_event;
}
public void setAuth_event(String auth_event) {
this.auth_event = auth_event;
}
public int getSocketTimeout() {
return socketTimeout;
}
public void setSocketTimeout(int socketTimeout) {
this.socketTimeout = socketTimeout;
}
public String getApp_name() {
return app_name;
}
public void setApp_name(String app_name) {
this.app_name = app_name;
}
public String getApp_type() {
return app_type;
}
public void setApp_type(String app_type) {
this.app_type = app_type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy