16 package org.openkilda.testing.service.traffexam.model;
18 import com.fasterxml.jackson.annotation.JsonCreator;
19 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
20 import com.fasterxml.jackson.annotation.JsonProperty;
24 @JsonIgnoreProperties(ignoreUnknown =
true)
28 private double seconds;
31 @JsonProperty(
"bits_per_second")
32 private double bitsPerSecond;
36 @JsonProperty(
"start")
double start,
37 @JsonProperty(
"end")
double end,
38 @JsonProperty(
"seconds")
double seconds,
39 @JsonProperty(
"bytes")
long bytes,
40 @JsonProperty(
"bits_per_second")
double bitsPerSecond) {
43 this.seconds = seconds;
45 this.bitsPerSecond = bitsPerSecond;
IPerfReportTcpSumSection( @JsonProperty("start") double start, @JsonProperty("end") double end, @JsonProperty("seconds") double seconds, @JsonProperty("bytes") long bytes, @JsonProperty("bits_per_second") double bitsPerSecond)