Interface GraphQLInsufficientScopeError
- All Superinterfaces:
GraphQLErrorObject
This error occurs when your API Client does not have the OAuth scope required for the endpoint. Use an API Client with the required permissions for this endpoint instead.
Example to create an instance using the builder pattern
GraphQLInsufficientScopeError graphQLInsufficientScopeError = GraphQLInsufficientScopeError.builder()
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
discriminator value for GraphQLInsufficientScopeError -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for GraphQLInsufficientScopeErrorbuilder
(GraphQLInsufficientScopeError template) create builder for GraphQLInsufficientScopeError instancedeepCopy
(GraphQLInsufficientScopeError template) factory method to create a deep copy of GraphQLInsufficientScopeError@NotNull String
getCode()
One of the error codes that is listed on the Errors page.of()
factory methodof
(GraphQLInsufficientScopeError template) factory method to create a shallow copy GraphQLInsufficientScopeErrorstatic com.fasterxml.jackson.core.type.TypeReference<GraphQLInsufficientScopeError>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.error.GraphQLErrorObject
setValue, values, withGraphQLErrorObject
-
Field Details
-
INSUFFICIENT_SCOPE
discriminator value for GraphQLInsufficientScopeError- See Also:
-
-
Method Details
-
getCode
Description copied from interface:GraphQLErrorObject
One of the error codes that is listed on the Errors page.
- Specified by:
getCode
in interfaceGraphQLErrorObject
- Returns:
- code
-
of
factory method- Returns:
- instance of GraphQLInsufficientScopeError
-
of
factory method to create a shallow copy GraphQLInsufficientScopeError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static GraphQLInsufficientScopeError deepCopy(@Nullable GraphQLInsufficientScopeError template) factory method to create a deep copy of GraphQLInsufficientScopeError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for GraphQLInsufficientScopeError- Returns:
- builder
-
builder
create builder for GraphQLInsufficientScopeError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withGraphQLInsufficientScopeError
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-