Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,149 @@
package com.facebook.gamingservices.model;
import android.os.Parcel;
import android.os.Parcelable;
import com.facebook.share.model.ShareModel;
import com.facebook.share.model.ShareModelBuilder;
import java.util.Collections;
import java.util.List;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class ContextChooseContent implements ShareModel {
public static final CREATOR CREATOR = new CREATOR(null);
private final List<String> filters;
private final Integer maxSize;
private final Integer minSize;
public /* synthetic */ ContextChooseContent(Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
this(builder);
}
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public final Integer getMaxSize() {
return this.maxSize;
}
public final Integer getMinSize() {
return this.minSize;
}
private ContextChooseContent(Builder builder) {
this.filters = builder.getFilters$facebook_gamingservices_release();
this.maxSize = builder.getMaxSize$facebook_gamingservices_release();
this.minSize = builder.getMinSize$facebook_gamingservices_release();
}
public ContextChooseContent(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
this.filters = parcel.createStringArrayList();
this.maxSize = Integer.valueOf(parcel.readInt());
this.minSize = Integer.valueOf(parcel.readInt());
}
public final List<String> getFilters() {
List<String> list = this.filters;
if (list == null) {
return null;
}
return Collections.unmodifiableList(list);
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel out, int i) {
Intrinsics.checkNotNullParameter(out, "out");
out.writeStringList(this.filters);
Integer num = this.maxSize;
out.writeInt(num == null ? 0 : num.intValue());
Integer num2 = this.minSize;
out.writeInt(num2 != null ? num2.intValue() : 0);
}
public static final class Builder implements ShareModelBuilder<ContextChooseContent, Builder> {
private List<String> filters;
private Integer maxSize;
private Integer minSize;
public final List<String> getFilters$facebook_gamingservices_release() {
return this.filters;
}
public final Integer getMaxSize$facebook_gamingservices_release() {
return this.maxSize;
}
public final Integer getMinSize$facebook_gamingservices_release() {
return this.minSize;
}
public final Builder setFilters(List<String> list) {
this.filters = list;
return this;
}
public final void setFilters$facebook_gamingservices_release(List<String> list) {
this.filters = list;
}
public final Builder setMaxSize(Integer num) {
this.maxSize = num;
return this;
}
public final void setMaxSize$facebook_gamingservices_release(Integer num) {
this.maxSize = num;
}
public final Builder setMinSize(Integer num) {
this.minSize = num;
return this;
}
public final void setMinSize$facebook_gamingservices_release(Integer num) {
this.minSize = num;
}
@Override // com.facebook.share.ShareBuilder
public ContextChooseContent build() {
return new ContextChooseContent(this, null);
}
@Override // com.facebook.share.model.ShareModelBuilder
public Builder readFrom(ContextChooseContent contextChooseContent) {
Builder minSize;
return (contextChooseContent == null || (minSize = setFilters(contextChooseContent.getFilters()).setMaxSize(contextChooseContent.getMaxSize()).setMinSize(contextChooseContent.getMinSize())) == null) ? this : minSize;
}
public final Builder readFrom(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return readFrom((ContextChooseContent) parcel.readParcelable(ContextChooseContent.class.getClassLoader()));
}
}
public static final class CREATOR implements Parcelable.Creator<ContextChooseContent> {
public /* synthetic */ CREATOR(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private CREATOR() {
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextChooseContent createFromParcel(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return new ContextChooseContent(parcel);
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextChooseContent[] newArray(int i) {
return new ContextChooseContent[i];
}
}
}

View File

@@ -0,0 +1,97 @@
package com.facebook.gamingservices.model;
import android.os.Parcel;
import android.os.Parcelable;
import com.facebook.share.model.ShareModel;
import com.facebook.share.model.ShareModelBuilder;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class ContextCreateContent implements ShareModel {
public static final CREATOR CREATOR = new CREATOR(null);
private final String suggestedPlayerID;
public /* synthetic */ ContextCreateContent(Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
this(builder);
}
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public final String getSuggestedPlayerID() {
return this.suggestedPlayerID;
}
private ContextCreateContent(Builder builder) {
this.suggestedPlayerID = builder.getSuggestedPlayerID$facebook_gamingservices_release();
}
public ContextCreateContent(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
this.suggestedPlayerID = parcel.readString();
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel out, int i) {
Intrinsics.checkNotNullParameter(out, "out");
out.writeString(this.suggestedPlayerID);
}
public static final class Builder implements ShareModelBuilder<ContextCreateContent, Builder> {
private String suggestedPlayerID;
public final String getSuggestedPlayerID$facebook_gamingservices_release() {
return this.suggestedPlayerID;
}
public final Builder setSuggestedPlayerID(String str) {
this.suggestedPlayerID = str;
return this;
}
public final void setSuggestedPlayerID$facebook_gamingservices_release(String str) {
this.suggestedPlayerID = str;
}
@Override // com.facebook.share.ShareBuilder
public ContextCreateContent build() {
return new ContextCreateContent(this, null);
}
@Override // com.facebook.share.model.ShareModelBuilder
public Builder readFrom(ContextCreateContent contextCreateContent) {
Builder suggestedPlayerID;
return (contextCreateContent == null || (suggestedPlayerID = setSuggestedPlayerID(contextCreateContent.getSuggestedPlayerID())) == null) ? this : suggestedPlayerID;
}
public final Builder readFrom(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return readFrom((ContextCreateContent) parcel.readParcelable(ContextCreateContent.class.getClassLoader()));
}
}
public static final class CREATOR implements Parcelable.Creator<ContextCreateContent> {
public /* synthetic */ CREATOR(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private CREATOR() {
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextCreateContent createFromParcel(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return new ContextCreateContent(parcel);
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextCreateContent[] newArray(int i) {
return new ContextCreateContent[i];
}
}
}

View File

@@ -0,0 +1,97 @@
package com.facebook.gamingservices.model;
import android.os.Parcel;
import android.os.Parcelable;
import com.facebook.share.model.ShareModel;
import com.facebook.share.model.ShareModelBuilder;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class ContextSwitchContent implements ShareModel {
public static final CREATOR CREATOR = new CREATOR(null);
private final String contextID;
public /* synthetic */ ContextSwitchContent(Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
this(builder);
}
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public final String getContextID() {
return this.contextID;
}
private ContextSwitchContent(Builder builder) {
this.contextID = builder.getContextID$facebook_gamingservices_release();
}
public ContextSwitchContent(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
this.contextID = parcel.readString();
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel out, int i) {
Intrinsics.checkNotNullParameter(out, "out");
out.writeString(this.contextID);
}
public static final class Builder implements ShareModelBuilder<ContextSwitchContent, Builder> {
private String contextID;
public final String getContextID$facebook_gamingservices_release() {
return this.contextID;
}
public final Builder setContextID(String str) {
this.contextID = str;
return this;
}
public final void setContextID$facebook_gamingservices_release(String str) {
this.contextID = str;
}
@Override // com.facebook.share.ShareBuilder
public ContextSwitchContent build() {
return new ContextSwitchContent(this, null);
}
@Override // com.facebook.share.model.ShareModelBuilder
public Builder readFrom(ContextSwitchContent contextSwitchContent) {
Builder contextID;
return (contextSwitchContent == null || (contextID = setContextID(contextSwitchContent.getContextID())) == null) ? this : contextID;
}
public final Builder readFrom(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return readFrom((ContextSwitchContent) parcel.readParcelable(ContextSwitchContent.class.getClassLoader()));
}
}
public static final class CREATOR implements Parcelable.Creator<ContextSwitchContent> {
public /* synthetic */ CREATOR(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private CREATOR() {
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextSwitchContent createFromParcel(Parcel parcel) {
Intrinsics.checkNotNullParameter(parcel, "parcel");
return new ContextSwitchContent(parcel);
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // android.os.Parcelable.Creator
public ContextSwitchContent[] newArray(int i) {
return new ContextSwitchContent[i];
}
}
}

View File

@@ -0,0 +1,159 @@
package com.facebook.gamingservices.model;
import android.graphics.Bitmap;
import android.util.Base64;
import com.facebook.gamingservices.GamingContext;
import java.io.ByteArrayOutputStream;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class CustomUpdateContent {
private final String contextTokenId;
private final CustomUpdateLocalizedText cta;
private final String data;
private final String image;
private final CustomUpdateMedia media;
private final CustomUpdateLocalizedText text;
public /* synthetic */ CustomUpdateContent(String str, CustomUpdateLocalizedText customUpdateLocalizedText, CustomUpdateLocalizedText customUpdateLocalizedText2, String str2, CustomUpdateMedia customUpdateMedia, String str3, DefaultConstructorMarker defaultConstructorMarker) {
this(str, customUpdateLocalizedText, customUpdateLocalizedText2, str2, customUpdateMedia, str3);
}
public final String getContextTokenId() {
return this.contextTokenId;
}
public final CustomUpdateLocalizedText getCta() {
return this.cta;
}
public final String getData() {
return this.data;
}
public final String getImage() {
return this.image;
}
public final CustomUpdateMedia getMedia() {
return this.media;
}
public final CustomUpdateLocalizedText getText() {
return this.text;
}
private CustomUpdateContent(String str, CustomUpdateLocalizedText customUpdateLocalizedText, CustomUpdateLocalizedText customUpdateLocalizedText2, String str2, CustomUpdateMedia customUpdateMedia, String str3) {
this.contextTokenId = str;
this.text = customUpdateLocalizedText;
this.cta = customUpdateLocalizedText2;
this.image = str2;
this.media = customUpdateMedia;
this.data = str3;
}
public /* synthetic */ CustomUpdateContent(String str, CustomUpdateLocalizedText customUpdateLocalizedText, CustomUpdateLocalizedText customUpdateLocalizedText2, String str2, CustomUpdateMedia customUpdateMedia, String str3, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(str, customUpdateLocalizedText, (i & 4) != 0 ? null : customUpdateLocalizedText2, (i & 8) != 0 ? null : str2, (i & 16) != 0 ? null : customUpdateMedia, (i & 32) != 0 ? null : str3);
}
public final JSONObject toGraphRequestContent() {
JSONObject jSONObject = new JSONObject();
jSONObject.put("context_token_id", this.contextTokenId);
jSONObject.put("text", this.text.toJSONObject().toString());
CustomUpdateLocalizedText customUpdateLocalizedText = this.cta;
if (customUpdateLocalizedText != null) {
jSONObject.put("cta", customUpdateLocalizedText.toJSONObject().toString());
}
String str = this.image;
if (str != null) {
jSONObject.put("image", str);
}
CustomUpdateMedia customUpdateMedia = this.media;
if (customUpdateMedia != null) {
jSONObject.put("media", customUpdateMedia.toJSONObject().toString());
}
String str2 = this.data;
if (str2 != null) {
jSONObject.put("data", str2);
}
return jSONObject;
}
public static final class Builder {
private final String contextTokenId;
private CustomUpdateLocalizedText cta;
private String data;
private final Bitmap image;
private final CustomUpdateMedia media;
private final CustomUpdateLocalizedText text;
public final CustomUpdateLocalizedText getCta() {
return this.cta;
}
public final String getData() {
return this.data;
}
public final Builder setCta(CustomUpdateLocalizedText cta) {
Intrinsics.checkNotNullParameter(cta, "cta");
this.cta = cta;
return this;
}
public final Builder setData(String data) {
Intrinsics.checkNotNullParameter(data, "data");
this.data = data;
return this;
}
private Builder(String str, CustomUpdateLocalizedText customUpdateLocalizedText, Bitmap bitmap, CustomUpdateMedia customUpdateMedia) {
this.contextTokenId = str;
this.text = customUpdateLocalizedText;
this.image = bitmap;
this.media = customUpdateMedia;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public Builder(GamingContext contextToken, CustomUpdateLocalizedText text, Bitmap image) {
this(contextToken.getContextID(), text, image, null);
Intrinsics.checkNotNullParameter(contextToken, "contextToken");
Intrinsics.checkNotNullParameter(text, "text");
Intrinsics.checkNotNullParameter(image, "image");
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public Builder(GamingContext contextToken, CustomUpdateLocalizedText text, CustomUpdateMedia media) {
this(contextToken.getContextID(), text, null, media);
Intrinsics.checkNotNullParameter(contextToken, "contextToken");
Intrinsics.checkNotNullParameter(text, "text");
Intrinsics.checkNotNullParameter(media, "media");
}
public final CustomUpdateContent build() {
CustomUpdateMedia customUpdateMedia = this.media;
if (customUpdateMedia != null) {
if (!((customUpdateMedia.getGif() != null) ^ (this.media.getVideo() != null))) {
throw new IllegalArgumentException("Invalid CustomUpdateMedia, please set either gif or video");
}
}
String bitmapToBase64String = bitmapToBase64String(this.image);
String str = this.contextTokenId;
if (str == null) {
throw new IllegalArgumentException("parameter contextToken must not be null");
}
return new CustomUpdateContent(str, this.text, this.cta, bitmapToBase64String, this.media, this.data, null);
}
private final String bitmapToBase64String(Bitmap bitmap) {
if (bitmap == null) {
return null;
}
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream);
return Intrinsics.stringPlus("data:image/png;base64,", Base64.encodeToString(byteArrayOutputStream.toByteArray(), 2));
}
}
}

View File

@@ -0,0 +1,16 @@
package com.facebook.gamingservices.model;
/* loaded from: classes2.dex */
public final class CustomUpdateContentKt {
private static final String CONTEXT_TOKEN_KEY = "context_token_id";
private static final String CTA_KEY = "cta";
private static final String DATA_KEY = "data";
private static final String DEFAULT_KEY = "default";
private static final String GIF_KEY = "gif";
private static final String IMAGE_KEY = "image";
private static final String LOCALIZATIONS_KEY = "localizations";
private static final String MEDIA_KEY = "media";
private static final String TEXT_KEY = "text";
private static final String URL_KEY = "url";
private static final String VIDEO_KEY = "video";
}

View File

@@ -0,0 +1,93 @@
package com.facebook.gamingservices.model;
import com.mbridge.msdk.newreward.player.view.hybrid.util.MRAIDCommunicatorUtil;
import java.util.HashMap;
import java.util.Map;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class CustomUpdateLocalizedText {
/* renamed from: default, reason: not valid java name */
private final String f0default;
private final HashMap<String, String> localizations;
/* JADX WARN: Multi-variable type inference failed */
public static /* synthetic */ CustomUpdateLocalizedText copy$default(CustomUpdateLocalizedText customUpdateLocalizedText, String str, HashMap hashMap, int i, Object obj) {
if ((i & 1) != 0) {
str = customUpdateLocalizedText.f0default;
}
if ((i & 2) != 0) {
hashMap = customUpdateLocalizedText.localizations;
}
return customUpdateLocalizedText.copy(str, hashMap);
}
public final String component1() {
return this.f0default;
}
public final HashMap<String, String> component2() {
return this.localizations;
}
public final CustomUpdateLocalizedText copy(String str, HashMap<String, String> hashMap) {
Intrinsics.checkNotNullParameter(str, "default");
return new CustomUpdateLocalizedText(str, hashMap);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof CustomUpdateLocalizedText)) {
return false;
}
CustomUpdateLocalizedText customUpdateLocalizedText = (CustomUpdateLocalizedText) obj;
return Intrinsics.areEqual(this.f0default, customUpdateLocalizedText.f0default) && Intrinsics.areEqual(this.localizations, customUpdateLocalizedText.localizations);
}
public final String getDefault() {
return this.f0default;
}
public final HashMap<String, String> getLocalizations() {
return this.localizations;
}
public int hashCode() {
int hashCode = this.f0default.hashCode() * 31;
HashMap<String, String> hashMap = this.localizations;
return hashCode + (hashMap == null ? 0 : hashMap.hashCode());
}
public String toString() {
return "CustomUpdateLocalizedText(default=" + this.f0default + ", localizations=" + this.localizations + ')';
}
public CustomUpdateLocalizedText(String str, HashMap<String, String> hashMap) {
Intrinsics.checkNotNullParameter(str, "default");
this.f0default = str;
this.localizations = hashMap;
}
public /* synthetic */ CustomUpdateLocalizedText(String str, HashMap hashMap, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(str, (i & 2) != 0 ? null : hashMap);
}
public final JSONObject toJSONObject() {
JSONObject jSONObject = new JSONObject();
jSONObject.put(MRAIDCommunicatorUtil.STATES_DEFAULT, this.f0default);
HashMap<String, String> hashMap = this.localizations;
if (hashMap != null) {
JSONObject jSONObject2 = new JSONObject();
for (Map.Entry<String, String> entry : hashMap.entrySet()) {
jSONObject2.put(entry.getKey(), entry.getValue());
}
jSONObject.put("localizations", jSONObject2);
}
return jSONObject;
}
}

View File

@@ -0,0 +1,94 @@
package com.facebook.gamingservices.model;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class CustomUpdateMedia {
private final CustomUpdateMediaInfo gif;
private final CustomUpdateMediaInfo video;
/* JADX WARN: Multi-variable type inference failed */
public CustomUpdateMedia() {
this(null, 0 == true ? 1 : 0, 3, 0 == true ? 1 : 0);
}
public static /* synthetic */ CustomUpdateMedia copy$default(CustomUpdateMedia customUpdateMedia, CustomUpdateMediaInfo customUpdateMediaInfo, CustomUpdateMediaInfo customUpdateMediaInfo2, int i, Object obj) {
if ((i & 1) != 0) {
customUpdateMediaInfo = customUpdateMedia.gif;
}
if ((i & 2) != 0) {
customUpdateMediaInfo2 = customUpdateMedia.video;
}
return customUpdateMedia.copy(customUpdateMediaInfo, customUpdateMediaInfo2);
}
public final CustomUpdateMediaInfo component1() {
return this.gif;
}
public final CustomUpdateMediaInfo component2() {
return this.video;
}
public final CustomUpdateMedia copy(CustomUpdateMediaInfo customUpdateMediaInfo, CustomUpdateMediaInfo customUpdateMediaInfo2) {
return new CustomUpdateMedia(customUpdateMediaInfo, customUpdateMediaInfo2);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof CustomUpdateMedia)) {
return false;
}
CustomUpdateMedia customUpdateMedia = (CustomUpdateMedia) obj;
return Intrinsics.areEqual(this.gif, customUpdateMedia.gif) && Intrinsics.areEqual(this.video, customUpdateMedia.video);
}
public final CustomUpdateMediaInfo getGif() {
return this.gif;
}
public final CustomUpdateMediaInfo getVideo() {
return this.video;
}
public int hashCode() {
CustomUpdateMediaInfo customUpdateMediaInfo = this.gif;
int hashCode = (customUpdateMediaInfo == null ? 0 : customUpdateMediaInfo.hashCode()) * 31;
CustomUpdateMediaInfo customUpdateMediaInfo2 = this.video;
return hashCode + (customUpdateMediaInfo2 != null ? customUpdateMediaInfo2.hashCode() : 0);
}
public String toString() {
return "CustomUpdateMedia(gif=" + this.gif + ", video=" + this.video + ')';
}
public CustomUpdateMedia(CustomUpdateMediaInfo customUpdateMediaInfo, CustomUpdateMediaInfo customUpdateMediaInfo2) {
this.gif = customUpdateMediaInfo;
this.video = customUpdateMediaInfo2;
}
public /* synthetic */ CustomUpdateMedia(CustomUpdateMediaInfo customUpdateMediaInfo, CustomUpdateMediaInfo customUpdateMediaInfo2, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? null : customUpdateMediaInfo, (i & 2) != 0 ? null : customUpdateMediaInfo2);
}
public final JSONObject toJSONObject() {
JSONObject jSONObject = new JSONObject();
CustomUpdateMediaInfo customUpdateMediaInfo = this.gif;
if (customUpdateMediaInfo != null) {
JSONObject jSONObject2 = new JSONObject();
jSONObject2.put("url", customUpdateMediaInfo.getUrl());
jSONObject.put("gif", jSONObject2);
}
CustomUpdateMediaInfo customUpdateMediaInfo2 = this.video;
if (customUpdateMediaInfo2 != null) {
JSONObject jSONObject3 = new JSONObject();
jSONObject3.put("url", customUpdateMediaInfo2.getUrl());
jSONObject.put("video", jSONObject3);
}
return jSONObject;
}
}

View File

@@ -0,0 +1,48 @@
package com.facebook.gamingservices.model;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class CustomUpdateMediaInfo {
private final String url;
public static /* synthetic */ CustomUpdateMediaInfo copy$default(CustomUpdateMediaInfo customUpdateMediaInfo, String str, int i, Object obj) {
if ((i & 1) != 0) {
str = customUpdateMediaInfo.url;
}
return customUpdateMediaInfo.copy(str);
}
public final String component1() {
return this.url;
}
public final CustomUpdateMediaInfo copy(String url) {
Intrinsics.checkNotNullParameter(url, "url");
return new CustomUpdateMediaInfo(url);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof CustomUpdateMediaInfo) && Intrinsics.areEqual(this.url, ((CustomUpdateMediaInfo) obj).url);
}
public final String getUrl() {
return this.url;
}
public int hashCode() {
return this.url.hashCode();
}
public String toString() {
return "CustomUpdateMediaInfo(url=" + this.url + ')';
}
public CustomUpdateMediaInfo(String url) {
Intrinsics.checkNotNullParameter(url, "url");
this.url = url;
}
}