All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.audits.GetEncodedResponseResult Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.audits;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public final class GetEncodedResponseResult {
  public String body;

  public Integer originalSize;

  public Integer encodedSize;

  @JsonCreator
  GetEncodedResponseResult(@JsonProperty("body") String body,
      @JsonProperty(value = "originalSize", required = true) Integer originalSize,
      @JsonProperty(value = "encodedSize", required = true) Integer encodedSize) {
    this.body = body;
    this.originalSize = originalSize;
    this.encodedSize = encodedSize;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy