61 lines
1.6 KiB
Java
61 lines
1.6 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.lzr, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public class C16188lzr {
|
|
|
|
@SerializedName("dayOfMonth")
|
|
private String b;
|
|
|
|
@SerializedName("endDate")
|
|
private String c;
|
|
|
|
@SerializedName("scheduleType")
|
|
private String d;
|
|
|
|
@SerializedName("startDate")
|
|
private String e;
|
|
|
|
public C16188lzr(String str, String str2, String str3, String str4) {
|
|
this.d = str;
|
|
this.b = str2;
|
|
this.e = str3;
|
|
this.c = str4;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
C16188lzr c16188lzr = (C16188lzr) obj;
|
|
if (this.d.equals(c16188lzr.d) && this.b.equals(c16188lzr.b) && this.e.equals(c16188lzr.e)) {
|
|
return this.c.equals(c16188lzr.c);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = this.d.hashCode();
|
|
int hashCode2 = this.b.hashCode();
|
|
return (((((hashCode * 31) + hashCode2) * 31) + this.e.hashCode()) * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder("ScheduleRequest{scheduleType='");
|
|
sb.append(this.d);
|
|
sb.append("', dayOfMonth='");
|
|
sb.append(this.b);
|
|
sb.append("', startDate='");
|
|
sb.append(this.e);
|
|
sb.append("', endDate='");
|
|
sb.append(this.c);
|
|
sb.append("'}");
|
|
return sb.toString();
|
|
}
|
|
}
|