29 lines
536 B
Java
29 lines
536 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class Txv {
|
||
|
|
||
|
@SerializedName("customerInfo")
|
||
|
private Tcy b;
|
||
|
|
||
|
@SerializedName("mileageInfo")
|
||
|
private SvY c;
|
||
|
|
||
|
@SerializedName("productsToRedeem")
|
||
|
private List<GjB> e;
|
||
|
|
||
|
public Txv(Tcy tcy, List<GjB> list) {
|
||
|
this.b = tcy;
|
||
|
this.e = list;
|
||
|
}
|
||
|
|
||
|
public Txv(Tcy tcy, List<GjB> list, SvY svY) {
|
||
|
this.b = tcy;
|
||
|
this.e = list;
|
||
|
this.c = svY;
|
||
|
}
|
||
|
}
|