{% include "/android/_dackka-meta-tags.html" %}

DeleteBytesRequest

{% setvar page_path %}com/google/android/gms/auth/blockstore/DeleteBytesRequest.html{% endsetvar %} {% setvar doc_root_path %}/android/reference{% endsetvar %} {% setvar can_switch %}1{% endsetvar %} {% include "android/_java_switcher2.md" %}

public class DeleteBytesRequest implements Parcelable


A request to delete app data from Block Store.

Summary

Nested types

public final class DeleteBytesRequest.Builder

A builder for DeleteBytesRequest objects.

Constants

static final Parcelable.Creator<DeleteBytesRequest>

Public fields

final boolean
final List<String>

Public methods

boolean

Returns whether or not all app's Block Store data should be deleted.

List<String>

Returns the list of keys whose associated data, if any, should be deleted.

void
writeToParcel(Parcel dest, int flags)

Inherited Constants

From android.os.Parcelable
static final int
static final int

Inherited methods

From android.os.Parcelable
abstract int

Constants

CREATOR

public static final Parcelable.Creator<DeleteBytesRequestCREATOR

Public fields

deleteAll

public final boolean deleteAll

keys

public final List<Stringkeys

Public methods

getDeleteAll

public boolean getDeleteAll()

Returns whether or not all app's Block Store data should be deleted.

getKeys

public List<StringgetKeys()

Returns the list of keys whose associated data, if any, should be deleted.

An empty list means that no key-based filtering will be performed. In other words, no data will be deleted if the key list is empty and no other criterion is provided.

Note that the app data that was stored without an explicit key can be deleted with the default key DEFAULT_BYTES_DATA_KEY.

writeToParcel

public void writeToParcel(Parcel dest, int flags)