36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
package com.google.android.gms.internal.p002firebaseauthapi;
|
|
|
|
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;
|
|
import com.google.firebase.auth.UserProfileChangeRequest;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class zztg extends AbstractSafeParcelable {
|
|
public static final Parcelable.Creator<zztg> CREATOR = new zzth();
|
|
private final UserProfileChangeRequest zza;
|
|
private final String zzb;
|
|
|
|
public zztg(UserProfileChangeRequest userProfileChangeRequest, String str) {
|
|
this.zza = userProfileChangeRequest;
|
|
this.zzb = str;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeParcelable(parcel, 1, this.zza, i, false);
|
|
SafeParcelWriter.writeString(parcel, 2, this.zzb, false);
|
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
|
}
|
|
|
|
public final String zzb() {
|
|
return this.zzb;
|
|
}
|
|
|
|
public final UserProfileChangeRequest zza() {
|
|
return this.zza;
|
|
}
|
|
}
|