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

48 lines
1.5 KiB
Java
Raw Normal View History

2022-03-14 07:58:47 +00:00
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;
2022-03-17 08:17:49 +00:00
private final String regenerateNonce;
2022-03-14 07:58:47 +00:00
public final String a() {
return this.nonce;
}
2022-03-17 08:17:49 +00:00
public final String b() {
return this.regenerateNonce;
}
2022-03-14 07:58:47 +00:00
public boolean equals(Object obj) {
2022-03-17 08:17:49 +00:00
if (this == obj) {
return true;
}
if (!(obj instanceof GetBackupCodesSendVerificationKeyResponse)) {
return false;
2022-03-14 07:58:47 +00:00
}
2022-03-17 08:17:49 +00:00
GetBackupCodesSendVerificationKeyResponse getBackupCodesSendVerificationKeyResponse = (GetBackupCodesSendVerificationKeyResponse) obj;
return m.areEqual(this.nonce, getBackupCodesSendVerificationKeyResponse.nonce) && m.areEqual(this.regenerateNonce, getBackupCodesSendVerificationKeyResponse.regenerateNonce);
2022-03-14 07:58:47 +00:00
}
public int hashCode() {
String str = this.nonce;
2022-03-17 08:17:49 +00:00
int i = 0;
int hashCode = (str != null ? str.hashCode() : 0) * 31;
String str2 = this.regenerateNonce;
if (str2 != null) {
i = str2.hashCode();
2022-03-14 07:58:47 +00:00
}
2022-03-17 08:17:49 +00:00
return hashCode + i;
2022-03-14 07:58:47 +00:00
}
public String toString() {
2022-03-17 08:17:49 +00:00
StringBuilder S = a.S("GetBackupCodesSendVerificationKeyResponse(nonce=");
S.append(this.nonce);
S.append(", regenerateNonce=");
return a.H(S, this.regenerateNonce, ")");
2022-03-14 07:58:47 +00:00
}
}