16 package org.openkilda.messaging.command.flow;
18 import com.fasterxml.jackson.annotation.JsonProperty;
19 import lombok.Builder;
24 import java.util.List;
30 @JsonProperty(
"switch_id")
31 private String switchId;
33 @JsonProperty(
"flow_commands")
34 private List<BaseInstallFlow> flowCommands;
37 @JsonProperty(
"switch_id") String switchId,
38 @JsonProperty(
"flow_commands") List<BaseInstallFlow> flowCommands) {
39 this.switchId = switchId;
40 this.flowCommands = flowCommands;
BatchInstallRequest( @JsonProperty("switch_id") String switchId, @JsonProperty("flow_commands") List< BaseInstallFlow > flowCommands)