Interface AttributeGroupDraft

All Superinterfaces:
io.vrap.rmf.base.client.Draft<AttributeGroupDraft>, WithKey
All Known Implementing Classes:
AttributeGroupDraftImpl

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

     AttributeGroupDraft attributeGroupDraft = AttributeGroupDraft.builder()
             .name(nameBuilder -> nameBuilder)
             .plusAttributes(attributesBuilder -> attributesBuilder)
             .build()