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

com.hubspot.chrome.devtools.client.core.browser.GetWindowForTargetResult Maven / Gradle / Ivy

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

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

public final class GetWindowForTargetResult {
  public WindowID windowId;

  public Bounds bounds;

  @JsonCreator
  GetWindowForTargetResult(@JsonProperty(value = "windowId", required = true) WindowID windowId,
      @JsonProperty(value = "bounds", required = true) Bounds bounds) {
    this.windowId = windowId;
    this.bounds = bounds;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy