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

com.hubspot.chrome.devtools.client.core.memory.GetDOMCountersResult Maven / Gradle / Ivy

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

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

public final class GetDOMCountersResult {
  public Integer documents;

  public Integer nodes;

  public Integer jsEventListeners;

  @JsonCreator
  GetDOMCountersResult(@JsonProperty(value = "documents", required = true) Integer documents,
      @JsonProperty(value = "nodes", required = true) Integer nodes,
      @JsonProperty(value = "jsEventListeners", required = true) Integer jsEventListeners) {
    this.documents = documents;
    this.nodes = nodes;
    this.jsEventListeners = jsEventListeners;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy