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

com.hubspot.chrome.devtools.client.core.debugger.SetBreakpointResult Maven / Gradle / Ivy

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

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

public final class SetBreakpointResult {
  public BreakpointId breakpointId;

  public Location actualLocation;

  @JsonCreator
  SetBreakpointResult(
      @JsonProperty(value = "breakpointId", required = true) BreakpointId breakpointId,
      @JsonProperty(value = "actualLocation", required = true) Location actualLocation) {
    this.breakpointId = breakpointId;
    this.actualLocation = actualLocation;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy