36 lines
683 B
Java
36 lines
683 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import org.simpleframework.xml.strategy.Name;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class dPA {
|
|
|
|
@SerializedName(Name.MARK)
|
|
public final String a;
|
|
|
|
@SerializedName("longDescription")
|
|
public final String b;
|
|
|
|
@SerializedName("requirePeriod")
|
|
public final Boolean c;
|
|
|
|
@SerializedName("description")
|
|
public final String e;
|
|
|
|
private dPA(Boolean bool) {
|
|
this.a = null;
|
|
this.e = null;
|
|
this.b = null;
|
|
this.c = bool;
|
|
}
|
|
|
|
private /* synthetic */ dPA(byte b) {
|
|
this(Boolean.FALSE);
|
|
}
|
|
|
|
public dPA() {
|
|
this((byte) 0);
|
|
}
|
|
}
|