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

com.hubspot.chrome.devtools.client.core.cachestorage.RequestEntriesResult Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

public final class RequestEntriesResult {
  public List cacheDataEntries;

  public Boolean hasMore;

  @JsonCreator
  RequestEntriesResult(
      @JsonProperty(value = "cacheDataEntries", required = true) List cacheDataEntries,
      @JsonProperty(value = "hasMore", required = true) Boolean hasMore) {
    this.cacheDataEntries = cacheDataEntries;
    this.hasMore = hasMore;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy