Interface CustomerGroup

All Superinterfaces:
BaseResource, CustomerGroupMixin, Customizable<CustomerGroup>, DomainResource<CustomerGroup>, Identifiable<CustomerGroup>, Referencable<CustomerGroup>, ResourceIdentifiable<CustomerGroup>, Versioned<CustomerGroup>, WithKey
All Known Implementing Classes:
CustomerGroupImpl

CustomerGroup
Example to create an instance using the builder pattern

     CustomerGroup customerGroup = CustomerGroup.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("{name}")
             .build()