25 lines
665 B
Java
25 lines
665 B
Java
package com.kofax.mobile.sdk.capture.parameter;
|
|
|
|
import com.kofax.mobile.sdk.capture.model.CaptureData;
|
|
import java.io.Serializable;
|
|
import o.InterfaceC13391fZD;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class ProcessingParameters implements Serializable {
|
|
public String operations;
|
|
public boolean useMrzPageDetection;
|
|
public boolean useTargetFrameCrop;
|
|
public ProcessingType processingType = ProcessingType.ON_DEVICE;
|
|
public CaptureData captureData = new CaptureData();
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum ProcessingType {
|
|
OFF,
|
|
ON_DEVICE
|
|
}
|
|
|
|
@InterfaceC13391fZD
|
|
public ProcessingParameters() {
|
|
}
|
|
}
|