Interface DateTimeAttribute

All Superinterfaces:
Attribute
All Known Implementing Classes:
DateTimeAttributeImpl

public interface DateTimeAttribute extends Attribute

This type represents an attribute whose value is a date with time.


Example to create an instance using the builder pattern

     DateTimeAttribute dateTimeAttribute = DateTimeAttribute.builder()
             .value(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .build()