Interface Zone

All Superinterfaces:
BaseResource, DomainResource<Zone>, Identifiable<Zone>, Referencable<Zone>, ResourceIdentifiable<Zone>, Versioned<Zone>, WithKey, ZoneMixin
All Known Implementing Classes:
ZoneImpl

Zone
Example to create an instance using the builder pattern

     Zone zone = Zone.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}")
             .plusLocations(locationsBuilder -> locationsBuilder)
             .build()
 
  • Method Details