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

com.hubspot.chrome.devtools.client.core.domstorage.DomStorageItemRemovedEvent Maven / Gradle / Ivy

There is a newer version: 94.0.4606.61
Show newest version
package com.hubspot.chrome.devtools.client.core.domstorage;

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

public final class DomStorageItemRemovedEvent extends Event {
  private StorageId storageId;

  private String key;

  @JsonCreator
  public DomStorageItemRemovedEvent(@JsonProperty("storageId") StorageId storageId,
      @JsonProperty("key") String key) {
    this.storageId = storageId;
    this.key = key;
  }

  public StorageId getStorageId() {
    return storageId;
  }

  public String getKey() {
    return key;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy