16 package org.openkilda.northbound.dto.flows;
18 import com.fasterxml.jackson.annotation.JsonInclude;
19 import com.fasterxml.jackson.annotation.JsonProperty;
20 import lombok.AllArgsConstructor;
22 import lombok.NoArgsConstructor;
24 import java.util.List;
32 @JsonInclude(JsonInclude.Include.NON_NULL)
35 @JsonProperty(
"flow_id")
36 private String flowId;
38 @JsonProperty(
"as_expected")
39 private Boolean asExpected;
41 @JsonProperty(
"pkt_counts")
42 private List<Long> pktCounts;
44 @JsonProperty(
"byte_counts")
45 private List<Long> byteCounts;
47 private List<PathDiscrepancyDto> discrepancies;
49 @JsonProperty(
"flow_rules_total")
50 private Integer flowRulesTotal;
52 @JsonProperty(
"switch_rules_total")
53 private Integer switchRulesTotal;