27 lines
693 B
Java
27 lines
693 B
Java
|
package com.kofax.mobile.sdk.capture.parameter;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import o.InterfaceC13391fZD;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class LookAndFeelParameters implements Serializable {
|
||
|
public boolean galleryEnabled = false;
|
||
|
public boolean forceCaptureEnabled = false;
|
||
|
public boolean exitEnabled = false;
|
||
|
public int manualCaptureTimer = 10;
|
||
|
public TorchMode torch = TorchMode.AUTO;
|
||
|
public boolean reviewCapturedImage = false;
|
||
|
public boolean reviewProcessedImage = false;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum TorchMode {
|
||
|
OFF,
|
||
|
ON,
|
||
|
AUTO
|
||
|
}
|
||
|
|
||
|
@InterfaceC13391fZD
|
||
|
public LookAndFeelParameters() {
|
||
|
}
|
||
|
}
|