Interface DeliveryCustomTypeRemovedMessage

All Superinterfaces:
BaseResource, DomainResource<Message>, Identifiable<Message>, Message, OrderMessage, Versioned<Message>

public interface DeliveryCustomTypeRemovedMessage extends OrderMessage

Generated after removing a Custom Type from a Delivery using the Set Custom Type update action with empty parameters.


Example to create an instance using the builder pattern

     DeliveryCustomTypeRemovedMessage deliveryCustomTypeRemovedMessage = DeliveryCustomTypeRemovedMessage.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .sequenceNumber(0.3)
             .resource(resourceBuilder -> resourceBuilder)
             .resourceVersion(0.3)
             .deliveryId("{deliveryId}")
             .build()