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

com.hubspot.chrome.devtools.client.core.headlessexperimental.BeginFrameResult Maven / Gradle / Ivy

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

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

public final class BeginFrameResult {
  public Boolean hasDamage;

  public Boolean mainFrameContentUpdated;

  public String screenshotData;

  @JsonCreator
  BeginFrameResult(@JsonProperty(value = "hasDamage", required = true) Boolean hasDamage,
      @JsonProperty(value = "mainFrameContentUpdated", required = true) Boolean mainFrameContentUpdated,
      @JsonProperty("screenshotData") String screenshotData) {
    this.hasDamage = hasDamage;
    this.mainFrameContentUpdated = mainFrameContentUpdated;
    this.screenshotData = screenshotData;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy