Files
rr3-apk/decompiled-community/sources/com/ironsource/adqualitysdk/sdk/ISAdQualityCustomMediationRevenue.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

84 lines
2.7 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.ironsource.adqualitysdk.sdk;
/* loaded from: classes4.dex */
public class ISAdQualityCustomMediationRevenue {
/* renamed from: ﻐ, reason: contains not printable characters */
private final ISAdQualityMediationNetwork f21;
/* renamed from: , reason: contains not printable characters */
private final ISAdQualityAdType f22;
/* renamed from: ヌ, reason: contains not printable characters */
private final String f23;
/* renamed from: メ, reason: contains not printable characters */
private final double f24;
public ISAdQualityAdType getAdType() {
return this.f22;
}
public ISAdQualityMediationNetwork getMediationNetwork() {
return this.f21;
}
public String getPlacement() {
return this.f23;
}
public double getRevenue() {
return this.f24;
}
public /* synthetic */ ISAdQualityCustomMediationRevenue(ISAdQualityMediationNetwork iSAdQualityMediationNetwork, ISAdQualityAdType iSAdQualityAdType, double d, String str, byte b) {
this(iSAdQualityMediationNetwork, iSAdQualityAdType, d, str);
}
private ISAdQualityCustomMediationRevenue(ISAdQualityMediationNetwork iSAdQualityMediationNetwork, ISAdQualityAdType iSAdQualityAdType, double d, String str) {
this.f21 = iSAdQualityMediationNetwork;
this.f22 = iSAdQualityAdType;
this.f24 = d;
this.f23 = str;
}
public static class Builder {
/* renamed from: ﻛ, reason: contains not printable characters */
private String f26;
/* renamed from: , reason: contains not printable characters */
private double f27;
/* renamed from: ﻐ, reason: contains not printable characters */
private ISAdQualityMediationNetwork f25 = ISAdQualityMediationNetwork.UNKNOWN;
/* renamed from: ヌ, reason: contains not printable characters */
private ISAdQualityAdType f28 = ISAdQualityAdType.UNKNOWN;
public Builder setAdType(ISAdQualityAdType iSAdQualityAdType) {
this.f28 = iSAdQualityAdType;
return this;
}
public Builder setMediationNetwork(ISAdQualityMediationNetwork iSAdQualityMediationNetwork) {
this.f25 = iSAdQualityMediationNetwork;
return this;
}
public Builder setPlacement(String str) {
this.f26 = str;
return this;
}
public Builder setRevenue(double d) {
this.f27 = d;
return this;
}
public ISAdQualityCustomMediationRevenue build() {
return new ISAdQualityCustomMediationRevenue(this.f25, this.f28, this.f27, this.f26, (byte) 0);
}
}
}