Interface CustomLineItemDraft

All Superinterfaces:
io.vrap.rmf.base.client.Draft<CustomLineItemDraft>
All Known Implementing Classes:
CustomLineItemDraftImpl

public interface CustomLineItemDraft extends io.vrap.rmf.base.client.Draft<CustomLineItemDraft>
CustomLineItemDraft
Example to create an instance using the builder pattern

     CustomLineItemDraft customLineItemDraft = CustomLineItemDraft.builder()
             .name(nameBuilder -> nameBuilder)
             .money(moneyBuilder -> moneyBuilder)
             .totalPrice(totalPriceBuilder -> totalPriceBuilder)
             .slug("{slug}")
             .quantity(0.3)
             .build()