导航菜单

页面标题

页面副标题

Atlys v4.8.7 - C0650t.java 源代码

正在查看: Atlys v4.8.7 应用的 C0650t.java JAVA 源代码文件

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


package ch;

import B0.d2;
import android.os.Parcel;
import android.os.Parcelable;

public final class C0650t implements Parcelable {
    public static final Parcelable.Creator<C0650t> CREATOR = new androidx.appcompat.widget.S(25);
    public static C0650t c;
    public final String a;
    public final String b;

    public C0650t(String publishableKey, String str) {
        kotlin.jvm.internal.l.h(publishableKey, "publishableKey");
        this.a = publishableKey;
        this.b = str;
        if (!(!bn.l.y0(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".toString());
        }
        if (!(!bn.s.h0(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".toString());
        }
    }

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

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof C0650t)) {
            return false;
        }
        C0650t c0650t = (C0650t) obj;
        return kotlin.jvm.internal.l.c(this.a, c0650t.a) && kotlin.jvm.internal.l.c(this.b, c0650t.b);
    }

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

    public final String toString() {
        StringBuilder sb = new StringBuilder("PaymentConfiguration(publishableKey=");
        sb.append(this.a);
        sb.append(", stripeAccountId=");
        return d2.n(sb, this.b, ")");
    }

    @Override
    public final void writeToParcel(Parcel out, int i) {
        kotlin.jvm.internal.l.h(out, "out");
        out.writeString(this.a);
        out.writeString(this.b);
    }
}