package v6;

import androidx.annotation.Nullable;
import com.google.android.datatransport.Priority;

/* JADX INFO: loaded from: classes2.dex */
public final class k extends u {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public String f33705a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public byte[] f33706b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public Priority f33707c;

    @Override // v6.u
    public final l a() {
        String strConcat = this.f33705a == null ? " backendName" : "";
        if (this.f33707c == null) {
            strConcat = strConcat.concat(" priority");
        }
        if (strConcat.isEmpty()) {
            return new l(this.f33705a, this.f33706b, this.f33707c, 0);
        }
        throw new IllegalStateException("Missing required properties:".concat(strConcat));
    }

    public final k b(String str) {
        if (str == null) {
            throw new NullPointerException("Null backendName");
        }
        this.f33705a = str;
        return this;
    }

    public final k c(Priority priority) {
        if (priority == null) {
            throw new NullPointerException("Null priority");
        }
        this.f33707c = priority;
        return this;
    }

    @Override // v6.u
    public u setExtras(@Nullable byte[] bArr) {
        this.f33706b = bArr;
        return this;
    }
}
