- 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
1256 lines
46 KiB
Java
1256 lines
46 KiB
Java
package com.vungle.ads.internal.model;
|
|
|
|
import com.vungle.ads.fpd.FirstPartyData;
|
|
import com.vungle.ads.fpd.FirstPartyData$$serializer;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.serialization.KSerializer;
|
|
import kotlinx.serialization.SerialName;
|
|
import kotlinx.serialization.Serializable;
|
|
import kotlinx.serialization.descriptors.SerialDescriptor;
|
|
import kotlinx.serialization.encoding.CompositeEncoder;
|
|
import kotlinx.serialization.internal.ArrayListSerializer;
|
|
import kotlinx.serialization.internal.BooleanSerializer;
|
|
import kotlinx.serialization.internal.LongSerializer;
|
|
import kotlinx.serialization.internal.PluginExceptionsKt;
|
|
import kotlinx.serialization.internal.SerializationConstructorMarker;
|
|
import kotlinx.serialization.internal.StringSerializer;
|
|
|
|
@Serializable
|
|
/* loaded from: classes4.dex */
|
|
public final class CommonRequestBody {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final AppNode app;
|
|
private final DeviceNode device;
|
|
private RequestExt ext;
|
|
private RequestParam request;
|
|
private final User user;
|
|
|
|
public static /* synthetic */ CommonRequestBody copy$default(CommonRequestBody commonRequestBody, DeviceNode deviceNode, AppNode appNode, User user, RequestExt requestExt, RequestParam requestParam, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
deviceNode = commonRequestBody.device;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
appNode = commonRequestBody.app;
|
|
}
|
|
AppNode appNode2 = appNode;
|
|
if ((i & 4) != 0) {
|
|
user = commonRequestBody.user;
|
|
}
|
|
User user2 = user;
|
|
if ((i & 8) != 0) {
|
|
requestExt = commonRequestBody.ext;
|
|
}
|
|
RequestExt requestExt2 = requestExt;
|
|
if ((i & 16) != 0) {
|
|
requestParam = commonRequestBody.request;
|
|
}
|
|
return commonRequestBody.copy(deviceNode, appNode2, user2, requestExt2, requestParam);
|
|
}
|
|
|
|
public final DeviceNode component1() {
|
|
return this.device;
|
|
}
|
|
|
|
public final AppNode component2() {
|
|
return this.app;
|
|
}
|
|
|
|
public final User component3() {
|
|
return this.user;
|
|
}
|
|
|
|
public final RequestExt component4() {
|
|
return this.ext;
|
|
}
|
|
|
|
public final RequestParam component5() {
|
|
return this.request;
|
|
}
|
|
|
|
public final CommonRequestBody copy(DeviceNode device, AppNode appNode, User user, RequestExt requestExt, RequestParam requestParam) {
|
|
Intrinsics.checkNotNullParameter(device, "device");
|
|
return new CommonRequestBody(device, appNode, user, requestExt, requestParam);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof CommonRequestBody)) {
|
|
return false;
|
|
}
|
|
CommonRequestBody commonRequestBody = (CommonRequestBody) obj;
|
|
return Intrinsics.areEqual(this.device, commonRequestBody.device) && Intrinsics.areEqual(this.app, commonRequestBody.app) && Intrinsics.areEqual(this.user, commonRequestBody.user) && Intrinsics.areEqual(this.ext, commonRequestBody.ext) && Intrinsics.areEqual(this.request, commonRequestBody.request);
|
|
}
|
|
|
|
public final AppNode getApp() {
|
|
return this.app;
|
|
}
|
|
|
|
public final DeviceNode getDevice() {
|
|
return this.device;
|
|
}
|
|
|
|
public final RequestExt getExt() {
|
|
return this.ext;
|
|
}
|
|
|
|
public final RequestParam getRequest() {
|
|
return this.request;
|
|
}
|
|
|
|
public final User getUser() {
|
|
return this.user;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = this.device.hashCode() * 31;
|
|
AppNode appNode = this.app;
|
|
int hashCode2 = (hashCode + (appNode == null ? 0 : appNode.hashCode())) * 31;
|
|
User user = this.user;
|
|
int hashCode3 = (hashCode2 + (user == null ? 0 : user.hashCode())) * 31;
|
|
RequestExt requestExt = this.ext;
|
|
int hashCode4 = (hashCode3 + (requestExt == null ? 0 : requestExt.hashCode())) * 31;
|
|
RequestParam requestParam = this.request;
|
|
return hashCode4 + (requestParam != null ? requestParam.hashCode() : 0);
|
|
}
|
|
|
|
public final void setExt(RequestExt requestExt) {
|
|
this.ext = requestExt;
|
|
}
|
|
|
|
public final void setRequest(RequestParam requestParam) {
|
|
this.request = requestParam;
|
|
}
|
|
|
|
public String toString() {
|
|
return "CommonRequestBody(device=" + this.device + ", app=" + this.app + ", user=" + this.user + ", ext=" + this.ext + ", request=" + this.request + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<CommonRequestBody> serializer() {
|
|
return CommonRequestBody$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ CommonRequestBody(int i, DeviceNode deviceNode, AppNode appNode, User user, RequestExt requestExt, RequestParam requestParam, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (1 != (i & 1)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 1, CommonRequestBody$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.device = deviceNode;
|
|
if ((i & 2) == 0) {
|
|
this.app = null;
|
|
} else {
|
|
this.app = appNode;
|
|
}
|
|
if ((i & 4) == 0) {
|
|
this.user = null;
|
|
} else {
|
|
this.user = user;
|
|
}
|
|
if ((i & 8) == 0) {
|
|
this.ext = null;
|
|
} else {
|
|
this.ext = requestExt;
|
|
}
|
|
if ((i & 16) == 0) {
|
|
this.request = null;
|
|
} else {
|
|
this.request = requestParam;
|
|
}
|
|
}
|
|
|
|
public CommonRequestBody(DeviceNode device, AppNode appNode, User user, RequestExt requestExt, RequestParam requestParam) {
|
|
Intrinsics.checkNotNullParameter(device, "device");
|
|
this.device = device;
|
|
this.app = appNode;
|
|
this.user = user;
|
|
this.ext = requestExt;
|
|
this.request = requestParam;
|
|
}
|
|
|
|
public static final void write$Self(CommonRequestBody self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeSerializableElement(serialDesc, 0, DeviceNode$$serializer.INSTANCE, self.device);
|
|
if (output.shouldEncodeElementDefault(serialDesc, 1) || self.app != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 1, AppNode$$serializer.INSTANCE, self.app);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 2) || self.user != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 2, CommonRequestBody$User$$serializer.INSTANCE, self.user);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 3) || self.ext != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 3, CommonRequestBody$RequestExt$$serializer.INSTANCE, self.ext);
|
|
}
|
|
if (!output.shouldEncodeElementDefault(serialDesc, 4) && self.request == null) {
|
|
return;
|
|
}
|
|
output.encodeNullableSerializableElement(serialDesc, 4, CommonRequestBody$RequestParam$$serializer.INSTANCE, self.request);
|
|
}
|
|
|
|
public /* synthetic */ CommonRequestBody(DeviceNode deviceNode, AppNode appNode, User user, RequestExt requestExt, RequestParam requestParam, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(deviceNode, (i & 2) != 0 ? null : appNode, (i & 4) != 0 ? null : user, (i & 8) != 0 ? null : requestExt, (i & 16) != 0 ? null : requestParam);
|
|
}
|
|
|
|
@Serializable
|
|
public static final class User {
|
|
public static final Companion Companion = new Companion(null);
|
|
private CCPA ccpa;
|
|
private COPPA coppa;
|
|
private FirstPartyData fpd;
|
|
private GDPR gdpr;
|
|
private IAB iab;
|
|
|
|
public User() {
|
|
this((GDPR) null, (CCPA) null, (COPPA) null, (FirstPartyData) null, (IAB) null, 31, (DefaultConstructorMarker) null);
|
|
}
|
|
|
|
public static /* synthetic */ User copy$default(User user, GDPR gdpr, CCPA ccpa, COPPA coppa, FirstPartyData firstPartyData, IAB iab, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
gdpr = user.gdpr;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
ccpa = user.ccpa;
|
|
}
|
|
CCPA ccpa2 = ccpa;
|
|
if ((i & 4) != 0) {
|
|
coppa = user.coppa;
|
|
}
|
|
COPPA coppa2 = coppa;
|
|
if ((i & 8) != 0) {
|
|
firstPartyData = user.fpd;
|
|
}
|
|
FirstPartyData firstPartyData2 = firstPartyData;
|
|
if ((i & 16) != 0) {
|
|
iab = user.iab;
|
|
}
|
|
return user.copy(gdpr, ccpa2, coppa2, firstPartyData2, iab);
|
|
}
|
|
|
|
public final GDPR component1() {
|
|
return this.gdpr;
|
|
}
|
|
|
|
public final CCPA component2() {
|
|
return this.ccpa;
|
|
}
|
|
|
|
public final COPPA component3() {
|
|
return this.coppa;
|
|
}
|
|
|
|
public final FirstPartyData component4() {
|
|
return this.fpd;
|
|
}
|
|
|
|
public final IAB component5() {
|
|
return this.iab;
|
|
}
|
|
|
|
public final User copy(GDPR gdpr, CCPA ccpa, COPPA coppa, FirstPartyData firstPartyData, IAB iab) {
|
|
return new User(gdpr, ccpa, coppa, firstPartyData, iab);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof User)) {
|
|
return false;
|
|
}
|
|
User user = (User) obj;
|
|
return Intrinsics.areEqual(this.gdpr, user.gdpr) && Intrinsics.areEqual(this.ccpa, user.ccpa) && Intrinsics.areEqual(this.coppa, user.coppa) && Intrinsics.areEqual(this.fpd, user.fpd) && Intrinsics.areEqual(this.iab, user.iab);
|
|
}
|
|
|
|
public final CCPA getCcpa() {
|
|
return this.ccpa;
|
|
}
|
|
|
|
public final COPPA getCoppa() {
|
|
return this.coppa;
|
|
}
|
|
|
|
public final FirstPartyData getFpd() {
|
|
return this.fpd;
|
|
}
|
|
|
|
public final GDPR getGdpr() {
|
|
return this.gdpr;
|
|
}
|
|
|
|
public final IAB getIab() {
|
|
return this.iab;
|
|
}
|
|
|
|
public int hashCode() {
|
|
GDPR gdpr = this.gdpr;
|
|
int hashCode = (gdpr == null ? 0 : gdpr.hashCode()) * 31;
|
|
CCPA ccpa = this.ccpa;
|
|
int hashCode2 = (hashCode + (ccpa == null ? 0 : ccpa.hashCode())) * 31;
|
|
COPPA coppa = this.coppa;
|
|
int hashCode3 = (hashCode2 + (coppa == null ? 0 : coppa.hashCode())) * 31;
|
|
FirstPartyData firstPartyData = this.fpd;
|
|
int hashCode4 = (hashCode3 + (firstPartyData == null ? 0 : firstPartyData.hashCode())) * 31;
|
|
IAB iab = this.iab;
|
|
return hashCode4 + (iab != null ? iab.hashCode() : 0);
|
|
}
|
|
|
|
public final void setCcpa(CCPA ccpa) {
|
|
this.ccpa = ccpa;
|
|
}
|
|
|
|
public final void setCoppa(COPPA coppa) {
|
|
this.coppa = coppa;
|
|
}
|
|
|
|
public final void setFpd(FirstPartyData firstPartyData) {
|
|
this.fpd = firstPartyData;
|
|
}
|
|
|
|
public final void setGdpr(GDPR gdpr) {
|
|
this.gdpr = gdpr;
|
|
}
|
|
|
|
public final void setIab(IAB iab) {
|
|
this.iab = iab;
|
|
}
|
|
|
|
public String toString() {
|
|
return "User(gdpr=" + this.gdpr + ", ccpa=" + this.ccpa + ", coppa=" + this.coppa + ", fpd=" + this.fpd + ", iab=" + this.iab + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<User> serializer() {
|
|
return CommonRequestBody$User$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ User(int i, GDPR gdpr, CCPA ccpa, COPPA coppa, FirstPartyData firstPartyData, IAB iab, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if ((i & 1) == 0) {
|
|
this.gdpr = null;
|
|
} else {
|
|
this.gdpr = gdpr;
|
|
}
|
|
if ((i & 2) == 0) {
|
|
this.ccpa = null;
|
|
} else {
|
|
this.ccpa = ccpa;
|
|
}
|
|
if ((i & 4) == 0) {
|
|
this.coppa = null;
|
|
} else {
|
|
this.coppa = coppa;
|
|
}
|
|
if ((i & 8) == 0) {
|
|
this.fpd = null;
|
|
} else {
|
|
this.fpd = firstPartyData;
|
|
}
|
|
if ((i & 16) == 0) {
|
|
this.iab = null;
|
|
} else {
|
|
this.iab = iab;
|
|
}
|
|
}
|
|
|
|
public User(GDPR gdpr, CCPA ccpa, COPPA coppa, FirstPartyData firstPartyData, IAB iab) {
|
|
this.gdpr = gdpr;
|
|
this.ccpa = ccpa;
|
|
this.coppa = coppa;
|
|
this.fpd = firstPartyData;
|
|
this.iab = iab;
|
|
}
|
|
|
|
public static final void write$Self(User self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
if (output.shouldEncodeElementDefault(serialDesc, 0) || self.gdpr != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 0, CommonRequestBody$GDPR$$serializer.INSTANCE, self.gdpr);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 1) || self.ccpa != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 1, CommonRequestBody$CCPA$$serializer.INSTANCE, self.ccpa);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 2) || self.coppa != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 2, CommonRequestBody$COPPA$$serializer.INSTANCE, self.coppa);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 3) || self.fpd != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 3, FirstPartyData$$serializer.INSTANCE, self.fpd);
|
|
}
|
|
if (!output.shouldEncodeElementDefault(serialDesc, 4) && self.iab == null) {
|
|
return;
|
|
}
|
|
output.encodeNullableSerializableElement(serialDesc, 4, CommonRequestBody$IAB$$serializer.INSTANCE, self.iab);
|
|
}
|
|
|
|
public /* synthetic */ User(GDPR gdpr, CCPA ccpa, COPPA coppa, FirstPartyData firstPartyData, IAB iab, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : gdpr, (i & 2) != 0 ? null : ccpa, (i & 4) != 0 ? null : coppa, (i & 8) != 0 ? null : firstPartyData, (i & 16) != 0 ? null : iab);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class GDPR {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String consentMessageVersion;
|
|
private final String consentSource;
|
|
private final String consentStatus;
|
|
private final long consentTimestamp;
|
|
|
|
public static /* synthetic */ GDPR copy$default(GDPR gdpr, String str, String str2, long j, String str3, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = gdpr.consentStatus;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = gdpr.consentSource;
|
|
}
|
|
String str4 = str2;
|
|
if ((i & 4) != 0) {
|
|
j = gdpr.consentTimestamp;
|
|
}
|
|
long j2 = j;
|
|
if ((i & 8) != 0) {
|
|
str3 = gdpr.consentMessageVersion;
|
|
}
|
|
return gdpr.copy(str, str4, j2, str3);
|
|
}
|
|
|
|
@SerialName("consent_message_version")
|
|
public static /* synthetic */ void getConsentMessageVersion$annotations() {
|
|
}
|
|
|
|
@SerialName("consent_source")
|
|
public static /* synthetic */ void getConsentSource$annotations() {
|
|
}
|
|
|
|
@SerialName("consent_status")
|
|
public static /* synthetic */ void getConsentStatus$annotations() {
|
|
}
|
|
|
|
@SerialName("consent_timestamp")
|
|
public static /* synthetic */ void getConsentTimestamp$annotations() {
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.consentStatus;
|
|
}
|
|
|
|
public final String component2() {
|
|
return this.consentSource;
|
|
}
|
|
|
|
public final long component3() {
|
|
return this.consentTimestamp;
|
|
}
|
|
|
|
public final String component4() {
|
|
return this.consentMessageVersion;
|
|
}
|
|
|
|
public final GDPR copy(String consentStatus, String consentSource, long j, String consentMessageVersion) {
|
|
Intrinsics.checkNotNullParameter(consentStatus, "consentStatus");
|
|
Intrinsics.checkNotNullParameter(consentSource, "consentSource");
|
|
Intrinsics.checkNotNullParameter(consentMessageVersion, "consentMessageVersion");
|
|
return new GDPR(consentStatus, consentSource, j, consentMessageVersion);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof GDPR)) {
|
|
return false;
|
|
}
|
|
GDPR gdpr = (GDPR) obj;
|
|
return Intrinsics.areEqual(this.consentStatus, gdpr.consentStatus) && Intrinsics.areEqual(this.consentSource, gdpr.consentSource) && this.consentTimestamp == gdpr.consentTimestamp && Intrinsics.areEqual(this.consentMessageVersion, gdpr.consentMessageVersion);
|
|
}
|
|
|
|
public final String getConsentMessageVersion() {
|
|
return this.consentMessageVersion;
|
|
}
|
|
|
|
public final String getConsentSource() {
|
|
return this.consentSource;
|
|
}
|
|
|
|
public final String getConsentStatus() {
|
|
return this.consentStatus;
|
|
}
|
|
|
|
public final long getConsentTimestamp() {
|
|
return this.consentTimestamp;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((((this.consentStatus.hashCode() * 31) + this.consentSource.hashCode()) * 31) + Long.hashCode(this.consentTimestamp)) * 31) + this.consentMessageVersion.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "GDPR(consentStatus=" + this.consentStatus + ", consentSource=" + this.consentSource + ", consentTimestamp=" + this.consentTimestamp + ", consentMessageVersion=" + this.consentMessageVersion + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<GDPR> serializer() {
|
|
return CommonRequestBody$GDPR$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ GDPR(int i, @SerialName("consent_status") String str, @SerialName("consent_source") String str2, @SerialName("consent_timestamp") long j, @SerialName("consent_message_version") String str3, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (15 != (i & 15)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 15, CommonRequestBody$GDPR$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.consentStatus = str;
|
|
this.consentSource = str2;
|
|
this.consentTimestamp = j;
|
|
this.consentMessageVersion = str3;
|
|
}
|
|
|
|
public GDPR(String consentStatus, String consentSource, long j, String consentMessageVersion) {
|
|
Intrinsics.checkNotNullParameter(consentStatus, "consentStatus");
|
|
Intrinsics.checkNotNullParameter(consentSource, "consentSource");
|
|
Intrinsics.checkNotNullParameter(consentMessageVersion, "consentMessageVersion");
|
|
this.consentStatus = consentStatus;
|
|
this.consentSource = consentSource;
|
|
this.consentTimestamp = j;
|
|
this.consentMessageVersion = consentMessageVersion;
|
|
}
|
|
|
|
public static final void write$Self(GDPR self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeStringElement(serialDesc, 0, self.consentStatus);
|
|
output.encodeStringElement(serialDesc, 1, self.consentSource);
|
|
output.encodeLongElement(serialDesc, 2, self.consentTimestamp);
|
|
output.encodeStringElement(serialDesc, 3, self.consentMessageVersion);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class IAB {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String tcf;
|
|
|
|
public static /* synthetic */ IAB copy$default(IAB iab, String str, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = iab.tcf;
|
|
}
|
|
return iab.copy(str);
|
|
}
|
|
|
|
@SerialName("tcf")
|
|
public static /* synthetic */ void getTcf$annotations() {
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.tcf;
|
|
}
|
|
|
|
public final IAB copy(String tcf) {
|
|
Intrinsics.checkNotNullParameter(tcf, "tcf");
|
|
return new IAB(tcf);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof IAB) && Intrinsics.areEqual(this.tcf, ((IAB) obj).tcf);
|
|
}
|
|
|
|
public final String getTcf() {
|
|
return this.tcf;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.tcf.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "IAB(tcf=" + this.tcf + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<IAB> serializer() {
|
|
return CommonRequestBody$IAB$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ IAB(int i, @SerialName("tcf") String str, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (1 != (i & 1)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 1, CommonRequestBody$IAB$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.tcf = str;
|
|
}
|
|
|
|
public IAB(String tcf) {
|
|
Intrinsics.checkNotNullParameter(tcf, "tcf");
|
|
this.tcf = tcf;
|
|
}
|
|
|
|
public static final void write$Self(IAB self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeStringElement(serialDesc, 0, self.tcf);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class CCPA {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String status;
|
|
|
|
public static /* synthetic */ CCPA copy$default(CCPA ccpa, String str, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = ccpa.status;
|
|
}
|
|
return ccpa.copy(str);
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.status;
|
|
}
|
|
|
|
public final CCPA copy(String status) {
|
|
Intrinsics.checkNotNullParameter(status, "status");
|
|
return new CCPA(status);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof CCPA) && Intrinsics.areEqual(this.status, ((CCPA) obj).status);
|
|
}
|
|
|
|
public final String getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.status.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "CCPA(status=" + this.status + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<CCPA> serializer() {
|
|
return CommonRequestBody$CCPA$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ CCPA(int i, String str, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (1 != (i & 1)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 1, CommonRequestBody$CCPA$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.status = str;
|
|
}
|
|
|
|
public CCPA(String status) {
|
|
Intrinsics.checkNotNullParameter(status, "status");
|
|
this.status = status;
|
|
}
|
|
|
|
public static final void write$Self(CCPA self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeStringElement(serialDesc, 0, self.status);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class COPPA {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final Boolean isCoppa;
|
|
|
|
public static /* synthetic */ COPPA copy$default(COPPA coppa, Boolean bool, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
bool = coppa.isCoppa;
|
|
}
|
|
return coppa.copy(bool);
|
|
}
|
|
|
|
@SerialName(Cookie.COPPA_STATUS_KEY)
|
|
public static /* synthetic */ void isCoppa$annotations() {
|
|
}
|
|
|
|
public final Boolean component1() {
|
|
return this.isCoppa;
|
|
}
|
|
|
|
public final COPPA copy(Boolean bool) {
|
|
return new COPPA(bool);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof COPPA) && Intrinsics.areEqual(this.isCoppa, ((COPPA) obj).isCoppa);
|
|
}
|
|
|
|
public int hashCode() {
|
|
Boolean bool = this.isCoppa;
|
|
if (bool == null) {
|
|
return 0;
|
|
}
|
|
return bool.hashCode();
|
|
}
|
|
|
|
public final Boolean isCoppa() {
|
|
return this.isCoppa;
|
|
}
|
|
|
|
public String toString() {
|
|
return "COPPA(isCoppa=" + this.isCoppa + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<COPPA> serializer() {
|
|
return CommonRequestBody$COPPA$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ COPPA(int i, @SerialName("is_coppa") Boolean bool, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (1 != (i & 1)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 1, CommonRequestBody$COPPA$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.isCoppa = bool;
|
|
}
|
|
|
|
public COPPA(Boolean bool) {
|
|
this.isCoppa = bool;
|
|
}
|
|
|
|
public static final void write$Self(COPPA self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeNullableSerializableElement(serialDesc, 0, BooleanSerializer.INSTANCE, self.isCoppa);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class RequestExt {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final String configExtension;
|
|
private final Long configLastValidatedTimestamp;
|
|
private String signals;
|
|
|
|
public RequestExt() {
|
|
this((String) null, (String) null, (Long) null, 7, (DefaultConstructorMarker) null);
|
|
}
|
|
|
|
public static /* synthetic */ RequestExt copy$default(RequestExt requestExt, String str, String str2, Long l, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = requestExt.configExtension;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = requestExt.signals;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
l = requestExt.configLastValidatedTimestamp;
|
|
}
|
|
return requestExt.copy(str, str2, l);
|
|
}
|
|
|
|
@SerialName(Cookie.CONFIG_EXTENSION)
|
|
public static /* synthetic */ void getConfigExtension$annotations() {
|
|
}
|
|
|
|
@SerialName("config_last_validated_ts")
|
|
public static /* synthetic */ void getConfigLastValidatedTimestamp$annotations() {
|
|
}
|
|
|
|
@SerialName("signals")
|
|
public static /* synthetic */ void getSignals$annotations() {
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.configExtension;
|
|
}
|
|
|
|
public final String component2() {
|
|
return this.signals;
|
|
}
|
|
|
|
public final Long component3() {
|
|
return this.configLastValidatedTimestamp;
|
|
}
|
|
|
|
public final RequestExt copy(String str, String str2, Long l) {
|
|
return new RequestExt(str, str2, l);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof RequestExt)) {
|
|
return false;
|
|
}
|
|
RequestExt requestExt = (RequestExt) obj;
|
|
return Intrinsics.areEqual(this.configExtension, requestExt.configExtension) && Intrinsics.areEqual(this.signals, requestExt.signals) && Intrinsics.areEqual(this.configLastValidatedTimestamp, requestExt.configLastValidatedTimestamp);
|
|
}
|
|
|
|
public final String getConfigExtension() {
|
|
return this.configExtension;
|
|
}
|
|
|
|
public final Long getConfigLastValidatedTimestamp() {
|
|
return this.configLastValidatedTimestamp;
|
|
}
|
|
|
|
public final String getSignals() {
|
|
return this.signals;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.configExtension;
|
|
int hashCode = (str == null ? 0 : str.hashCode()) * 31;
|
|
String str2 = this.signals;
|
|
int hashCode2 = (hashCode + (str2 == null ? 0 : str2.hashCode())) * 31;
|
|
Long l = this.configLastValidatedTimestamp;
|
|
return hashCode2 + (l != null ? l.hashCode() : 0);
|
|
}
|
|
|
|
public final void setSignals(String str) {
|
|
this.signals = str;
|
|
}
|
|
|
|
public String toString() {
|
|
return "RequestExt(configExtension=" + this.configExtension + ", signals=" + this.signals + ", configLastValidatedTimestamp=" + this.configLastValidatedTimestamp + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<RequestExt> serializer() {
|
|
return CommonRequestBody$RequestExt$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ RequestExt(int i, @SerialName("config_extension") String str, @SerialName("signals") String str2, @SerialName("config_last_validated_ts") Long l, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if ((i & 1) == 0) {
|
|
this.configExtension = null;
|
|
} else {
|
|
this.configExtension = str;
|
|
}
|
|
if ((i & 2) == 0) {
|
|
this.signals = null;
|
|
} else {
|
|
this.signals = str2;
|
|
}
|
|
if ((i & 4) == 0) {
|
|
this.configLastValidatedTimestamp = null;
|
|
} else {
|
|
this.configLastValidatedTimestamp = l;
|
|
}
|
|
}
|
|
|
|
public RequestExt(String str, String str2, Long l) {
|
|
this.configExtension = str;
|
|
this.signals = str2;
|
|
this.configLastValidatedTimestamp = l;
|
|
}
|
|
|
|
public static final void write$Self(RequestExt self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
if (output.shouldEncodeElementDefault(serialDesc, 0) || self.configExtension != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 0, StringSerializer.INSTANCE, self.configExtension);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 1) || self.signals != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 1, StringSerializer.INSTANCE, self.signals);
|
|
}
|
|
if (!output.shouldEncodeElementDefault(serialDesc, 2) && self.configLastValidatedTimestamp == null) {
|
|
return;
|
|
}
|
|
output.encodeNullableSerializableElement(serialDesc, 2, LongSerializer.INSTANCE, self.configLastValidatedTimestamp);
|
|
}
|
|
|
|
public /* synthetic */ RequestExt(String str, String str2, Long l, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : str, (i & 2) != 0 ? null : str2, (i & 4) != 0 ? null : l);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class RequestParam {
|
|
public static final Companion Companion = new Companion(null);
|
|
private AdSizeParam adSize;
|
|
private final Long adStartTime;
|
|
private final String advAppId;
|
|
private final String placementReferenceId;
|
|
private final List<String> placements;
|
|
private final String user;
|
|
|
|
public RequestParam() {
|
|
this((List) null, (AdSizeParam) null, (Long) null, (String) null, (String) null, (String) null, 63, (DefaultConstructorMarker) null);
|
|
}
|
|
|
|
public static /* synthetic */ RequestParam copy$default(RequestParam requestParam, List list, AdSizeParam adSizeParam, Long l, String str, String str2, String str3, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
list = requestParam.placements;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
adSizeParam = requestParam.adSize;
|
|
}
|
|
AdSizeParam adSizeParam2 = adSizeParam;
|
|
if ((i & 4) != 0) {
|
|
l = requestParam.adStartTime;
|
|
}
|
|
Long l2 = l;
|
|
if ((i & 8) != 0) {
|
|
str = requestParam.advAppId;
|
|
}
|
|
String str4 = str;
|
|
if ((i & 16) != 0) {
|
|
str2 = requestParam.placementReferenceId;
|
|
}
|
|
String str5 = str2;
|
|
if ((i & 32) != 0) {
|
|
str3 = requestParam.user;
|
|
}
|
|
return requestParam.copy(list, adSizeParam2, l2, str4, str5, str3);
|
|
}
|
|
|
|
@SerialName("ad_size")
|
|
public static /* synthetic */ void getAdSize$annotations() {
|
|
}
|
|
|
|
@SerialName("ad_start_time")
|
|
public static /* synthetic */ void getAdStartTime$annotations() {
|
|
}
|
|
|
|
@SerialName("app_id")
|
|
public static /* synthetic */ void getAdvAppId$annotations() {
|
|
}
|
|
|
|
@SerialName("placement_reference_id")
|
|
public static /* synthetic */ void getPlacementReferenceId$annotations() {
|
|
}
|
|
|
|
public final List<String> component1() {
|
|
return this.placements;
|
|
}
|
|
|
|
public final AdSizeParam component2() {
|
|
return this.adSize;
|
|
}
|
|
|
|
public final Long component3() {
|
|
return this.adStartTime;
|
|
}
|
|
|
|
public final String component4() {
|
|
return this.advAppId;
|
|
}
|
|
|
|
public final String component5() {
|
|
return this.placementReferenceId;
|
|
}
|
|
|
|
public final String component6() {
|
|
return this.user;
|
|
}
|
|
|
|
public final RequestParam copy(List<String> list, AdSizeParam adSizeParam, Long l, String str, String str2, String str3) {
|
|
return new RequestParam(list, adSizeParam, l, str, str2, str3);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof RequestParam)) {
|
|
return false;
|
|
}
|
|
RequestParam requestParam = (RequestParam) obj;
|
|
return Intrinsics.areEqual(this.placements, requestParam.placements) && Intrinsics.areEqual(this.adSize, requestParam.adSize) && Intrinsics.areEqual(this.adStartTime, requestParam.adStartTime) && Intrinsics.areEqual(this.advAppId, requestParam.advAppId) && Intrinsics.areEqual(this.placementReferenceId, requestParam.placementReferenceId) && Intrinsics.areEqual(this.user, requestParam.user);
|
|
}
|
|
|
|
public final AdSizeParam getAdSize() {
|
|
return this.adSize;
|
|
}
|
|
|
|
public final Long getAdStartTime() {
|
|
return this.adStartTime;
|
|
}
|
|
|
|
public final String getAdvAppId() {
|
|
return this.advAppId;
|
|
}
|
|
|
|
public final String getPlacementReferenceId() {
|
|
return this.placementReferenceId;
|
|
}
|
|
|
|
public final List<String> getPlacements() {
|
|
return this.placements;
|
|
}
|
|
|
|
public final String getUser() {
|
|
return this.user;
|
|
}
|
|
|
|
public int hashCode() {
|
|
List<String> list = this.placements;
|
|
int hashCode = (list == null ? 0 : list.hashCode()) * 31;
|
|
AdSizeParam adSizeParam = this.adSize;
|
|
int hashCode2 = (hashCode + (adSizeParam == null ? 0 : adSizeParam.hashCode())) * 31;
|
|
Long l = this.adStartTime;
|
|
int hashCode3 = (hashCode2 + (l == null ? 0 : l.hashCode())) * 31;
|
|
String str = this.advAppId;
|
|
int hashCode4 = (hashCode3 + (str == null ? 0 : str.hashCode())) * 31;
|
|
String str2 = this.placementReferenceId;
|
|
int hashCode5 = (hashCode4 + (str2 == null ? 0 : str2.hashCode())) * 31;
|
|
String str3 = this.user;
|
|
return hashCode5 + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final void setAdSize(AdSizeParam adSizeParam) {
|
|
this.adSize = adSizeParam;
|
|
}
|
|
|
|
public String toString() {
|
|
return "RequestParam(placements=" + this.placements + ", adSize=" + this.adSize + ", adStartTime=" + this.adStartTime + ", advAppId=" + this.advAppId + ", placementReferenceId=" + this.placementReferenceId + ", user=" + this.user + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<RequestParam> serializer() {
|
|
return CommonRequestBody$RequestParam$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public /* synthetic */ RequestParam(int i, List list, @SerialName("ad_size") AdSizeParam adSizeParam, @SerialName("ad_start_time") Long l, @SerialName("app_id") String str, @SerialName("placement_reference_id") String str2, String str3, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if ((i & 1) == 0) {
|
|
this.placements = null;
|
|
} else {
|
|
this.placements = list;
|
|
}
|
|
if ((i & 2) == 0) {
|
|
this.adSize = null;
|
|
} else {
|
|
this.adSize = adSizeParam;
|
|
}
|
|
if ((i & 4) == 0) {
|
|
this.adStartTime = null;
|
|
} else {
|
|
this.adStartTime = l;
|
|
}
|
|
if ((i & 8) == 0) {
|
|
this.advAppId = null;
|
|
} else {
|
|
this.advAppId = str;
|
|
}
|
|
if ((i & 16) == 0) {
|
|
this.placementReferenceId = null;
|
|
} else {
|
|
this.placementReferenceId = str2;
|
|
}
|
|
if ((i & 32) == 0) {
|
|
this.user = null;
|
|
} else {
|
|
this.user = str3;
|
|
}
|
|
}
|
|
|
|
public RequestParam(List<String> list, AdSizeParam adSizeParam, Long l, String str, String str2, String str3) {
|
|
this.placements = list;
|
|
this.adSize = adSizeParam;
|
|
this.adStartTime = l;
|
|
this.advAppId = str;
|
|
this.placementReferenceId = str2;
|
|
this.user = str3;
|
|
}
|
|
|
|
public static final void write$Self(RequestParam self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
if (output.shouldEncodeElementDefault(serialDesc, 0) || self.placements != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 0, new ArrayListSerializer(StringSerializer.INSTANCE), self.placements);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 1) || self.adSize != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 1, CommonRequestBody$AdSizeParam$$serializer.INSTANCE, self.adSize);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 2) || self.adStartTime != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 2, LongSerializer.INSTANCE, self.adStartTime);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 3) || self.advAppId != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 3, StringSerializer.INSTANCE, self.advAppId);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 4) || self.placementReferenceId != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 4, StringSerializer.INSTANCE, self.placementReferenceId);
|
|
}
|
|
if (!output.shouldEncodeElementDefault(serialDesc, 5) && self.user == null) {
|
|
return;
|
|
}
|
|
output.encodeNullableSerializableElement(serialDesc, 5, StringSerializer.INSTANCE, self.user);
|
|
}
|
|
|
|
public /* synthetic */ RequestParam(List list, AdSizeParam adSizeParam, Long l, String str, String str2, String str3, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : list, (i & 2) != 0 ? null : adSizeParam, (i & 4) != 0 ? null : l, (i & 8) != 0 ? null : str, (i & 16) != 0 ? null : str2, (i & 32) != 0 ? null : str3);
|
|
}
|
|
}
|
|
|
|
@Serializable
|
|
public static final class AdSizeParam {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final int height;
|
|
private final int width;
|
|
|
|
public static /* synthetic */ AdSizeParam copy$default(AdSizeParam adSizeParam, int i, int i2, int i3, Object obj) {
|
|
if ((i3 & 1) != 0) {
|
|
i = adSizeParam.width;
|
|
}
|
|
if ((i3 & 2) != 0) {
|
|
i2 = adSizeParam.height;
|
|
}
|
|
return adSizeParam.copy(i, i2);
|
|
}
|
|
|
|
@SerialName("h")
|
|
public static /* synthetic */ void getHeight$annotations() {
|
|
}
|
|
|
|
@SerialName("w")
|
|
public static /* synthetic */ void getWidth$annotations() {
|
|
}
|
|
|
|
public final int component1() {
|
|
return this.width;
|
|
}
|
|
|
|
public final int component2() {
|
|
return this.height;
|
|
}
|
|
|
|
public final AdSizeParam copy(int i, int i2) {
|
|
return new AdSizeParam(i, i2);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AdSizeParam)) {
|
|
return false;
|
|
}
|
|
AdSizeParam adSizeParam = (AdSizeParam) obj;
|
|
return this.width == adSizeParam.width && this.height == adSizeParam.height;
|
|
}
|
|
|
|
public final int getHeight() {
|
|
return this.height;
|
|
}
|
|
|
|
public final int getWidth() {
|
|
return this.width;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (Integer.hashCode(this.width) * 31) + Integer.hashCode(this.height);
|
|
}
|
|
|
|
public String toString() {
|
|
return "AdSizeParam(width=" + this.width + ", height=" + this.height + ')';
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<AdSizeParam> serializer() {
|
|
return CommonRequestBody$AdSizeParam$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public AdSizeParam(int i, int i2) {
|
|
this.width = i;
|
|
this.height = i2;
|
|
}
|
|
|
|
public /* synthetic */ AdSizeParam(int i, @SerialName("w") int i2, @SerialName("h") int i3, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if (3 != (i & 3)) {
|
|
PluginExceptionsKt.throwMissingFieldException(i, 3, CommonRequestBody$AdSizeParam$$serializer.INSTANCE.getDescriptor());
|
|
}
|
|
this.width = i2;
|
|
this.height = i3;
|
|
}
|
|
|
|
public static final void write$Self(AdSizeParam self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
output.encodeIntElement(serialDesc, 0, self.width);
|
|
output.encodeIntElement(serialDesc, 1, self.height);
|
|
}
|
|
}
|
|
}
|