Interface StateUpdate

All Superinterfaces:
ResourceUpdate<StateUpdate,StateUpdateAction,StateUpdateBuilder>

public interface StateUpdate extends ResourceUpdate<StateUpdate,StateUpdateAction,StateUpdateBuilder>
StateUpdate
Example to create an instance using the builder pattern

     StateUpdate stateUpdate = StateUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Method Details