74 lines
1.6 KiB
Java
74 lines
1.6 KiB
Java
package com.alexanderlogistics.zoho;
|
|
|
|
/**
|
|
* Helper class for JSON deserialization
|
|
*
|
|
* If the request is successful, you would receive the following:
|
|
*
|
|
* <pre>
|
|
{
|
|
"access_token": "{access_token}",
|
|
"refresh_token": "{refresh_token}",
|
|
"api_domain": "https://www.zohoapis.com",
|
|
"token_type": "Bearer",
|
|
"expires_in": 3600
|
|
}
|
|
* </pre>
|
|
*/
|
|
public class TokenResponse {
|
|
private String access_token;
|
|
private String refresh_token;
|
|
private long expires_in;
|
|
private String api_domain;
|
|
private String token_type;
|
|
private String scope; // Neu hinzugefügt für dein Response-Feld
|
|
|
|
// Getter/Setter notwendig für Yasson
|
|
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 long getExpires_in() {
|
|
return expires_in;
|
|
}
|
|
|
|
public void setExpires_in(long expires_in) {
|
|
this.expires_in = expires_in;
|
|
}
|
|
|
|
public String getApi_domain() {
|
|
return api_domain;
|
|
}
|
|
|
|
public void setApi_domain(String api_domain) {
|
|
this.api_domain = api_domain;
|
|
}
|
|
|
|
public String getToken_type() {
|
|
return token_type;
|
|
}
|
|
|
|
public void setToken_type(String token_type) {
|
|
this.token_type = token_type;
|
|
}
|
|
|
|
public String getScope() {
|
|
return scope;
|
|
}
|
|
|
|
public void setScope(String scope) {
|
|
this.scope = scope;
|
|
}
|
|
}
|