Interface GraphQLAttributeDefinitionAlreadyExistsError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLAttributeDefinitionAlreadyExistsErrorImpl

Returned when the name of the AttributeDefinition conflicts with an existing Attribute.

The error is returned as a failed response to the Create ProductType request or Change AttributeDefinition Name update action.


Example to create an instance using the builder pattern

     GraphQLAttributeDefinitionAlreadyExistsError graphQLAttributeDefinitionAlreadyExistsError = GraphQLAttributeDefinitionAlreadyExistsError.builder()
             .conflictingProductTypeId("{conflictingProductTypeId}")
             .conflictingProductTypeName("{conflictingProductTypeName}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()