- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|
|
}
|