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

com.hubspot.chrome.devtools.client.core.indexeddb.RequestDataResult Maven / Gradle / Ivy

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

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

public final class RequestDataResult {
  public List objectStoreDataEntries;

  public Boolean hasMore;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy