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

com.hubspot.chrome.devtools.client.core.page.ScreencastVisibilityChangedEvent Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hubspot.chrome.devtools.client.core.Event;

/**
 * Fired when the page with currently enabled screencast was shown or hidden `.
 */
public final class ScreencastVisibilityChangedEvent extends Event {
  private Boolean visible;

  @JsonCreator
  public ScreencastVisibilityChangedEvent(@JsonProperty("visible") Boolean visible) {
    this.visible = visible;
  }

  public Boolean getVisible() {
    return visible;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy