discord-jadx/app/src/main/java/com/discord/api/auth/mfa/GetBackupCodesSendVerificat...

48 lines
1.5 KiB
Java

package com.discord.api.auth.mfa;
import b.d.b.a.a;
import d0.z.d.m;
/* compiled from: GetBackupCodesSendVerificationKeyResponse.kt */
/* loaded from: classes.dex */
public final class GetBackupCodesSendVerificationKeyResponse {
private final String nonce;
private final String regenerateNonce;
public final String a() {
return this.nonce;
}
public final String b() {
return this.regenerateNonce;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GetBackupCodesSendVerificationKeyResponse)) {
return false;
}
GetBackupCodesSendVerificationKeyResponse getBackupCodesSendVerificationKeyResponse = (GetBackupCodesSendVerificationKeyResponse) obj;
return m.areEqual(this.nonce, getBackupCodesSendVerificationKeyResponse.nonce) && m.areEqual(this.regenerateNonce, getBackupCodesSendVerificationKeyResponse.regenerateNonce);
}
public int hashCode() {
String str = this.nonce;
int i = 0;
int hashCode = (str != null ? str.hashCode() : 0) * 31;
String str2 = this.regenerateNonce;
if (str2 != null) {
i = str2.hashCode();
}
return hashCode + i;
}
public String toString() {
StringBuilder S = a.S("GetBackupCodesSendVerificationKeyResponse(nonce=");
S.append(this.nonce);
S.append(", regenerateNonce=");
return a.H(S, this.regenerateNonce, ")");
}
}