52 lines
1.2 KiB
Java
52 lines
1.2 KiB
Java
package com.wisemapping.rest.model;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
|
@JsonAutoDetect(
|
|
fieldVisibility = JsonAutoDetect.Visibility.NONE,
|
|
setterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY,
|
|
isGetterVisibility = JsonAutoDetect.Visibility.NONE,
|
|
getterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY
|
|
)
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class RestOath2CallbackResponse {
|
|
|
|
private String email;
|
|
private Boolean googleSync;
|
|
private String syncCode;
|
|
private String jwtToken;
|
|
|
|
public String getEmail() {
|
|
return email;
|
|
}
|
|
|
|
public void setEmail(String email) {
|
|
this.email = email;
|
|
}
|
|
|
|
public Boolean getGoogleSync() {
|
|
return googleSync;
|
|
}
|
|
|
|
public void setGoogleSync(Boolean googleSync) {
|
|
this.googleSync = googleSync;
|
|
}
|
|
|
|
public String getSyncCode() {
|
|
return syncCode;
|
|
}
|
|
|
|
public void setSyncCode(String syncCode) {
|
|
this.syncCode = syncCode;
|
|
}
|
|
|
|
public String getJwtToken() {
|
|
return jwtToken;
|
|
}
|
|
|
|
public void setJwtToken(String jwtToken) {
|
|
this.jwtToken = jwtToken;
|
|
}
|
|
}
|