96 lines
2.8 KiB
Java
96 lines
2.8 KiB
Java
|
package com.google.firebase.auth;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class ActionCodeSettings extends AbstractSafeParcelable {
|
||
|
public static final Parcelable.Creator<ActionCodeSettings> CREATOR = new zzc();
|
||
|
private final String zza;
|
||
|
private final String zzb;
|
||
|
private final String zzc;
|
||
|
private final String zzd;
|
||
|
private final boolean zze;
|
||
|
private final String zzf;
|
||
|
private final boolean zzg;
|
||
|
private String zzh;
|
||
|
private int zzi;
|
||
|
private String zzj;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||
|
SafeParcelWriter.writeString(parcel, 1, getUrl(), false);
|
||
|
SafeParcelWriter.writeString(parcel, 2, getIOSBundle(), false);
|
||
|
SafeParcelWriter.writeString(parcel, 3, this.zzc, false);
|
||
|
SafeParcelWriter.writeString(parcel, 4, getAndroidPackageName(), false);
|
||
|
SafeParcelWriter.writeBoolean(parcel, 5, getAndroidInstallApp());
|
||
|
SafeParcelWriter.writeString(parcel, 6, getAndroidMinimumVersion(), false);
|
||
|
SafeParcelWriter.writeBoolean(parcel, 7, canHandleCodeInApp());
|
||
|
SafeParcelWriter.writeString(parcel, 8, this.zzh, false);
|
||
|
SafeParcelWriter.writeInt(parcel, 9, this.zzi);
|
||
|
SafeParcelWriter.writeString(parcel, 10, this.zzj, false);
|
||
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public ActionCodeSettings(String str, String str2, String str3, String str4, boolean z, String str5, boolean z2, String str6, int i, String str7) {
|
||
|
this.zza = str;
|
||
|
this.zzb = str2;
|
||
|
this.zzc = str3;
|
||
|
this.zzd = str4;
|
||
|
this.zze = z;
|
||
|
this.zzf = str5;
|
||
|
this.zzg = z2;
|
||
|
this.zzh = str6;
|
||
|
this.zzi = i;
|
||
|
this.zzj = str7;
|
||
|
}
|
||
|
|
||
|
public final void zzg(int i) {
|
||
|
this.zzi = i;
|
||
|
}
|
||
|
|
||
|
public final String zze() {
|
||
|
return this.zzh;
|
||
|
}
|
||
|
|
||
|
public final String zzd() {
|
||
|
return this.zzc;
|
||
|
}
|
||
|
|
||
|
public final String zzc() {
|
||
|
return this.zzj;
|
||
|
}
|
||
|
|
||
|
public final int zza() {
|
||
|
return this.zzi;
|
||
|
}
|
||
|
|
||
|
public String getUrl() {
|
||
|
return this.zza;
|
||
|
}
|
||
|
|
||
|
public String getIOSBundle() {
|
||
|
return this.zzb;
|
||
|
}
|
||
|
|
||
|
public String getAndroidPackageName() {
|
||
|
return this.zzd;
|
||
|
}
|
||
|
|
||
|
public String getAndroidMinimumVersion() {
|
||
|
return this.zzf;
|
||
|
}
|
||
|
|
||
|
public boolean getAndroidInstallApp() {
|
||
|
return this.zze;
|
||
|
}
|
||
|
|
||
|
public boolean canHandleCodeInApp() {
|
||
|
return this.zzg;
|
||
|
}
|
||
|
}
|