Interface RecurringOrderSetStartsAtAction

All Superinterfaces:
RecurringOrderUpdateAction

public interface RecurringOrderSetStartsAtAction extends RecurringOrderUpdateAction

To set the start date and time, the Recurring Order must not have been started yet. Setting the start date and time generates the RecurringOrderStartsAtSet Message.


Example to create an instance using the builder pattern

     RecurringOrderSetStartsAtAction recurringOrderSetStartsAtAction = RecurringOrderSetStartsAtAction.builder()
             .startsAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .build()