Interface AttributeNestedType

All Superinterfaces:
AttributeType
All Known Implementing Classes:
AttributeNestedTypeImpl

public interface AttributeNestedType extends AttributeType

Attribute type for nesting Attributes based on some existing ProductType. It does not support isSearchable and is not supported in queries. The only supported AttributeConstraint is None.


Example to create an instance using the builder pattern

     AttributeNestedType attributeNestedType = AttributeNestedType.builder()
             .typeReference(typeReferenceBuilder -> typeReferenceBuilder)
             .build()