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

com.hubspot.chrome.devtools.client.core.css.GetBackgroundColorsResult Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

public final class GetBackgroundColorsResult {
  public List backgroundColors;

  public String computedFontSize;

  public String computedFontWeight;

  public String computedBodyFontSize;

  @JsonCreator
  GetBackgroundColorsResult(@JsonProperty("backgroundColors") List backgroundColors,
      @JsonProperty("computedFontSize") String computedFontSize,
      @JsonProperty("computedFontWeight") String computedFontWeight,
      @JsonProperty("computedBodyFontSize") String computedBodyFontSize) {
    this.backgroundColors = backgroundColors;
    this.computedFontSize = computedFontSize;
    this.computedFontWeight = computedFontWeight;
    this.computedBodyFontSize = computedBodyFontSize;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy