48 lines
1.4 KiB
Java
48 lines
1.4 KiB
Java
|
package com.huawei.hms.support.account.result;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class AssistTokenResult implements Parcelable {
|
||
|
public static final Parcelable.Creator<AssistTokenResult> CREATOR = new Parcelable.Creator<AssistTokenResult>() { // from class: com.huawei.hms.support.account.result.AssistTokenResult.1
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
||
|
public AssistTokenResult createFromParcel(Parcel parcel) {
|
||
|
return new AssistTokenResult(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
||
|
public AssistTokenResult[] newArray(int i) {
|
||
|
return new AssistTokenResult[i];
|
||
|
}
|
||
|
};
|
||
|
private String a;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public AssistTokenResult() {
|
||
|
}
|
||
|
|
||
|
private AssistTokenResult(Parcel parcel) {
|
||
|
this.a = parcel.readString();
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.a);
|
||
|
}
|
||
|
|
||
|
public void setAssistToken(String str) {
|
||
|
this.a = str;
|
||
|
}
|
||
|
|
||
|
public String getAssistToken() {
|
||
|
return this.a;
|
||
|
}
|
||
|
}
|