- 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
43 lines
1009 B
Java
43 lines
1009 B
Java
package com.unity3d.scar.adapter.common.scarads;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class ScarAdMetadata {
|
|
private String _adString;
|
|
private String _adUnitId;
|
|
private String _placementId;
|
|
private String _queryId;
|
|
private Integer _videoLengthMs;
|
|
|
|
public String getAdString() {
|
|
return this._adString;
|
|
}
|
|
|
|
public String getAdUnitId() {
|
|
return this._adUnitId;
|
|
}
|
|
|
|
public String getPlacementId() {
|
|
return this._placementId;
|
|
}
|
|
|
|
public String getQueryId() {
|
|
return this._queryId;
|
|
}
|
|
|
|
public Integer getVideoLengthMs() {
|
|
return this._videoLengthMs;
|
|
}
|
|
|
|
public ScarAdMetadata(String str, String str2) {
|
|
this(str, str2, null, null, null);
|
|
}
|
|
|
|
public ScarAdMetadata(String str, String str2, String str3, String str4, Integer num) {
|
|
this._placementId = str;
|
|
this._queryId = str2;
|
|
this._adUnitId = str3;
|
|
this._adString = str4;
|
|
this._videoLengthMs = num;
|
|
}
|
|
}
|