- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
40 lines
1.0 KiB
Java
40 lines
1.0 KiB
Java
package com.android.billingclient.api;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class AcknowledgePurchaseParams {
|
|
public String zza;
|
|
|
|
public static final class Builder {
|
|
public String zza;
|
|
|
|
public /* synthetic */ Builder(zza zzaVar) {
|
|
}
|
|
|
|
public AcknowledgePurchaseParams build() {
|
|
String str = this.zza;
|
|
if (str == null) {
|
|
throw new IllegalArgumentException("Purchase token must be set");
|
|
}
|
|
AcknowledgePurchaseParams acknowledgePurchaseParams = new AcknowledgePurchaseParams(null);
|
|
acknowledgePurchaseParams.zza = str;
|
|
return acknowledgePurchaseParams;
|
|
}
|
|
|
|
public Builder setPurchaseToken(String str) {
|
|
this.zza = str;
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ AcknowledgePurchaseParams(zzb zzbVar) {
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return new Builder(null);
|
|
}
|
|
|
|
public String getPurchaseToken() {
|
|
return this.zza;
|
|
}
|
|
}
|