Interface MoneyAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
MoneyAttributeImpl

public interface MoneyAttribute extends Attribute

This type represents an attribute whose value is a money object.


Example to create an instance using the builder pattern

     MoneyAttribute moneyAttribute = MoneyAttribute.builder()
             .value(valueBuilder -> valueBuilder)
             .build()