30 lines
519 B
Java
30 lines
519 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class oWG {
|
|
|
|
@SerializedName("cardRefNo")
|
|
private String c;
|
|
|
|
@SerializedName("productType")
|
|
private LWm e;
|
|
|
|
public oWG(String str, LWm lWm) {
|
|
this.c = str;
|
|
this.e = lWm;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static class LWm {
|
|
|
|
@SerializedName("code")
|
|
private String a;
|
|
|
|
public LWm(String str) {
|
|
this.a = str;
|
|
}
|
|
}
|
|
}
|