discord-jadx/app/src/main/java/com/discord/databinding/PremiumStickerUpsellDialogB...

41 lines
1.2 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.button.MaterialButton;
public final class PremiumStickerUpsellDialogBinding implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final ImageView f1622c;
@NonNull
public final TextView d;
@NonNull
public final TextView e;
@NonNull
public final MaterialButton f;
public PremiumStickerUpsellDialogBinding(@NonNull RelativeLayout relativeLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull MaterialButton materialButton) {
this.a = relativeLayout;
this.b = textView;
this.f1622c = imageView;
this.d = textView2;
this.e = textView3;
this.f = materialButton;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}