package com.discord.models.domain; import b.d.b.a.a; import d0.z.d.m; /* compiled from: ModelApplicationStreamPreview.kt */ public final class ModelApplicationStreamPreview { private final String url; public ModelApplicationStreamPreview(String str) { m.checkNotNullParameter(str, "url"); this.url = str; } public static /* synthetic */ ModelApplicationStreamPreview copy$default(ModelApplicationStreamPreview modelApplicationStreamPreview, String str, int i, Object obj) { if ((i & 1) != 0) { str = modelApplicationStreamPreview.url; } return modelApplicationStreamPreview.copy(str); } public final String component1() { return this.url; } public final ModelApplicationStreamPreview copy(String str) { m.checkNotNullParameter(str, "url"); return new ModelApplicationStreamPreview(str); } public boolean equals(Object obj) { if (this != obj) { return (obj instanceof ModelApplicationStreamPreview) && m.areEqual(this.url, ((ModelApplicationStreamPreview) obj).url); } return true; } public final String getUrl() { return this.url; } public int hashCode() { String str = this.url; if (str != null) { return str.hashCode(); } return 0; } public String toString() { return a.H(a.R("ModelApplicationStreamPreview(url="), this.url, ")"); } }