31 lines
603 B
Java
31 lines
603 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class Oft {
|
|
|
|
@SerializedName("statementType")
|
|
private String a;
|
|
|
|
@SerializedName("endDate")
|
|
private String b;
|
|
|
|
@SerializedName("accountType")
|
|
private String c;
|
|
|
|
@SerializedName("startDate")
|
|
private String d;
|
|
|
|
@SerializedName("accountNo")
|
|
private String e;
|
|
|
|
public Oft(String str, String str2, String str3, String str4, String str5) {
|
|
this.e = str;
|
|
this.d = str2;
|
|
this.b = str3;
|
|
this.c = str4;
|
|
this.a = str5;
|
|
}
|
|
}
|