导航菜单

页面标题

页面副标题

Perplexity v2.48.1 - u.java 源代码

正在查看: Perplexity v2.48.1 应用的 u.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package Ah;

import android.os.Parcel;
import android.os.Parcelable;
import gm.AbstractC0834i;
import gm.AbstractC0835j;
import kotlin.jvm.internal.Intrinsics;

public final class u implements Parcelable {
    public static final Parcelable.Creator<u> CREATOR = new A9.a(9);
    public static u y;
    public final String w;
    public final String x;

    public u(String publishableKey, String str) {
        Intrinsics.h(publishableKey, "publishableKey");
        this.w = publishableKey;
        this.x = str;
        if (AbstractC0835j.b0(publishableKey)) {
            throw new IllegalArgumentException("Invalid Publishable Key: You must use a valid Stripe API key to make a Stripe API request. For more info, see https://stripe.com/docs/keys");
        }
        if (AbstractC0834i.P(publishableKey, "sk_", false)) {
            throw new IllegalArgumentException("Invalid Publishable Key: You are using a secret key instead of a publishable one. For more info, see https://stripe.com/docs/keys");
        }
    }

    @Override
    public final int describeContents() {
        return 0;
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof u)) {
            return false;
        }
        u uVar = (u) obj;
        return Intrinsics.c(this.w, uVar.w) && Intrinsics.c(this.x, uVar.x);
    }

    public final int hashCode() {
        int hashCode = this.w.hashCode() * 31;
        String str = this.x;
        return hashCode + (str == null ? 0 : str.hashCode());
    }

    public final String toString() {
        StringBuilder sb = new StringBuilder("PaymentConfiguration(publishableKey=");
        sb.append(this.w);
        sb.append(", stripeAccountId=");
        return com.mapbox.common.location.e.m(this.x, ")", sb);
    }

    @Override
    public final void writeToParcel(Parcel dest, int i) {
        Intrinsics.h(dest, "dest");
        dest.writeString(this.w);
        dest.writeString(this.x);
    }
}