Interface GraphQLSearchIndexingInProgressError
- All Superinterfaces:
GraphQLErrorObject
Returned when the indexing of Product information is still in progress for Projects that have indexing activated.
Example to create an instance using the builder pattern
GraphQLSearchIndexingInProgressError graphQLSearchIndexingInProgressError = GraphQLSearchIndexingInProgressError.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for GraphQLSearchIndexingInProgressError -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for GraphQLSearchIndexingInProgressErrorbuilder
(GraphQLSearchIndexingInProgressError template) create builder for GraphQLSearchIndexingInProgressError instancedeepCopy
(GraphQLSearchIndexingInProgressError template) factory method to create a deep copy of GraphQLSearchIndexingInProgressError@NotNull String
getCode()
One of the error codes that is listed on the Errors page.of()
factory methodof
(GraphQLSearchIndexingInProgressError template) factory method to create a shallow copy GraphQLSearchIndexingInProgressErrorstatic com.fasterxml.jackson.core.type.TypeReference<GraphQLSearchIndexingInProgressError>
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
-
SEARCH_INDEXING_IN_PROGRESS
discriminator value for GraphQLSearchIndexingInProgressError- 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 GraphQLSearchIndexingInProgressError
-
of
factory method to create a shallow copy GraphQLSearchIndexingInProgressError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static GraphQLSearchIndexingInProgressError deepCopy(@Nullable GraphQLSearchIndexingInProgressError template) factory method to create a deep copy of GraphQLSearchIndexingInProgressError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for GraphQLSearchIndexingInProgressError- Returns:
- builder
-
builder
static GraphQLSearchIndexingInProgressErrorBuilder builder(GraphQLSearchIndexingInProgressError template) create builder for GraphQLSearchIndexingInProgressError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withGraphQLSearchIndexingInProgressError
default <T> T withGraphQLSearchIndexingInProgressError(Function<GraphQLSearchIndexingInProgressError, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<GraphQLSearchIndexingInProgressError> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-