package com.google.android.gms.games.event; import android.database.CharArrayBuffer; import android.net.Uri; import android.os.Parcelable; import androidx.annotation.NonNull; import androidx.annotation.VisibleForTesting; import com.google.android.gms.common.annotation.KeepName; import com.google.android.gms.common.data.Freezable; import com.google.android.gms.games.Player; @VisibleForTesting /* loaded from: classes2.dex */ public interface Event extends Freezable, Parcelable { @NonNull String getDescription(); void getDescription(@NonNull CharArrayBuffer charArrayBuffer); @NonNull String getEventId(); @NonNull String getFormattedValue(); void getFormattedValue(@NonNull CharArrayBuffer charArrayBuffer); @NonNull Uri getIconImageUri(); @NonNull @KeepName @Deprecated String getIconImageUrl(); @NonNull String getName(); void getName(@NonNull CharArrayBuffer charArrayBuffer); @NonNull Player getPlayer(); long getValue(); boolean isVisible(); }