Interface AttributeGroup

All Superinterfaces:
BaseResource, DomainResource<AttributeGroup>, Identifiable<AttributeGroup>, Versioned<AttributeGroup>, WithKey
All Known Implementing Classes:
AttributeGroupImpl

AttributeGroup
Example to create an instance using the builder pattern

     AttributeGroup attributeGroup = AttributeGroup.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .name(nameBuilder -> nameBuilder)
             .plusAttributes(attributesBuilder -> attributesBuilder)
             .build()