44 lines
838 B
Java
44 lines
838 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class FFJ {
|
||
|
|
||
|
@SerializedName("amount")
|
||
|
private String a;
|
||
|
|
||
|
@SerializedName("duration")
|
||
|
private String b;
|
||
|
|
||
|
@SerializedName("repaymentMethod")
|
||
|
private String c;
|
||
|
|
||
|
@SerializedName("receivingAccountNo")
|
||
|
private String d;
|
||
|
|
||
|
@SerializedName("repaymentAccountNo")
|
||
|
private String e;
|
||
|
|
||
|
public FFJ(HBt hBt) {
|
||
|
this.a = hBt.a;
|
||
|
this.b = hBt.e;
|
||
|
this.d = hBt.b;
|
||
|
this.c = hBt.d;
|
||
|
this.e = hBt.c;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static class HBt {
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public String e;
|
||
|
|
||
|
public FFJ a() {
|
||
|
return new FFJ(this);
|
||
|
}
|
||
|
}
|
||
|
}
|