@Generated(value="org.immutables.processor.ProxyProcessor") public final class CheckTokenRequest extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
CheckTokenRequest.Builder
Builds instances of type
CheckTokenRequest. |
| Modifier and Type | Method and Description |
|---|---|
static CheckTokenRequest.Builder |
builder()
Creates a builder for
CheckTokenRequest. |
boolean |
equals(Object another)
This instance is equal to all instances of
CheckTokenRequest that have equal attribute values. |
String |
getClientId()
The client id
|
String |
getClientSecret()
The client secret
|
List<String> |
getScopes()
The scopes authorized by the user for this client
|
String |
getToken()
The token
|
int |
hashCode()
Computes a hash code from attributes:
clientId, clientSecret, scopes, token. |
String |
toString()
Prints the immutable value
CheckTokenRequest with attribute values. |
public String getClientId()
public String getClientSecret()
public String getToken()
public boolean equals(Object another)
CheckTokenRequest that have equal attribute values.public int hashCode()
clientId, clientSecret, scopes, token.public String toString()
CheckTokenRequest with attribute values.public static CheckTokenRequest.Builder builder()
CheckTokenRequest.
CheckTokenRequest.builder()
.clientId(String) // required clientId
.clientSecret(String) // required clientSecret
.scopes(List<String> | null) // nullable scopes
.token(String) // required token
.build();
Copyright © 2020. All rights reserved.