package com.scb.phone.data.entity.nhox; import com.google.firebase.firestore.PropertyName; import java.util.List; import o.C14851gaI; import o.C14953gcr; import o.C14957gcv; /* loaded from: classes3.dex */ public final class RequestMessageEntity { @PropertyName("complete") private String complete; @PropertyName("identifyId") private final String identifyId; @PropertyName("message") private final List message; @PropertyName("requestId") private final String requestId; @PropertyName("timestamp") private final String timestamp; @PropertyName("to") private final String to; public RequestMessageEntity(String str, String str2, String str3, String str4, List list, String str5) { this.identifyId = str; this.requestId = str2; this.to = str3; this.timestamp = str4; this.message = list; this.complete = str5; } public /* synthetic */ RequestMessageEntity(String str, String str2, String str3, String str4, C14851gaI c14851gaI, String str5, int i, C14953gcr c14953gcr) { this((i & 1) != 0 ? "" : str, (i & 2) != 0 ? "" : str2, (i & 4) != 0 ? "" : str3, (i & 8) != 0 ? "" : str4, (i & 16) != 0 ? C14851gaI.c : c14851gaI, (i & 32) != 0 ? "" : str5); } public final String toString() { String str = this.identifyId; String str2 = this.requestId; String str3 = this.to; String str4 = this.timestamp; List list = this.message; String str5 = this.complete; StringBuilder sb = new StringBuilder("RequestMessageEntity(identifyId="); sb.append(str); sb.append(", requestId="); sb.append(str2); sb.append(", to="); sb.append(str3); sb.append(", timestamp="); sb.append(str4); sb.append(", message="); sb.append(list); sb.append(", complete="); sb.append(str5); sb.append(")"); return sb.toString(); } public final void setComplete(String str) { this.complete = str; } public final int hashCode() { String str = this.identifyId; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.requestId; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.to; int hashCode3 = str3 == null ? 0 : str3.hashCode(); String str4 = this.timestamp; int hashCode4 = str4 == null ? 0 : str4.hashCode(); List list = this.message; int hashCode5 = list == null ? 0 : list.hashCode(); String str5 = this.complete; return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str5 != null ? str5.hashCode() : 0); } public final String getTo() { return this.to; } public final String getTimestamp() { return this.timestamp; } public final String getRequestId() { return this.requestId; } public final List getMessage() { return this.message; } public final String getIdentifyId() { return this.identifyId; } public final String getComplete() { return this.complete; } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof RequestMessageEntity)) { return false; } RequestMessageEntity requestMessageEntity = (RequestMessageEntity) obj; return C14957gcv.b((Object) this.identifyId, (Object) requestMessageEntity.identifyId) && C14957gcv.b((Object) this.requestId, (Object) requestMessageEntity.requestId) && C14957gcv.b((Object) this.to, (Object) requestMessageEntity.to) && C14957gcv.b((Object) this.timestamp, (Object) requestMessageEntity.timestamp) && C14957gcv.b(this.message, requestMessageEntity.message) && C14957gcv.b((Object) this.complete, (Object) requestMessageEntity.complete); } public final RequestMessageEntity copy(String str, String str2, String str3, String str4, List list, String str5) { return new RequestMessageEntity(str, str2, str3, str4, list, str5); } public final String component6() { return this.complete; } public final List component5() { return this.message; } public final String component4() { return this.timestamp; } public final String component3() { return this.to; } public final String component2() { return this.requestId; } public final String component1() { return this.identifyId; } public static /* synthetic */ RequestMessageEntity copy$default(RequestMessageEntity requestMessageEntity, String str, String str2, String str3, String str4, List list, String str5, int i, Object obj) { if ((i & 1) != 0) { str = requestMessageEntity.identifyId; } if ((i & 2) != 0) { str2 = requestMessageEntity.requestId; } String str6 = str2; if ((i & 4) != 0) { str3 = requestMessageEntity.to; } String str7 = str3; if ((i & 8) != 0) { str4 = requestMessageEntity.timestamp; } String str8 = str4; if ((i & 16) != 0) { list = requestMessageEntity.message; } List list2 = list; if ((i & 32) != 0) { str5 = requestMessageEntity.complete; } return requestMessageEntity.copy(str, str6, str7, str8, list2, str5); } public RequestMessageEntity() { this(null, null, null, null, null, null, 63, null); } }