RFSRecordingProcess

Objective-C

NS_CLOSED_ENUM(NSInteger, RFSRecordingProcess) {
    /// Video will be recorded and send in parallel with the main request to liveness service.
    RFSRecordingProcessAsynchronousUpload,
    /// Video will be recorded, packaged and sent in one request to liveness service.
    RFSRecordingProcessSynchronousUpload,
    /// Video will not be recorder.
    RFSRecordingProcessNotUpload
}

Swift

@frozen enum RecordingProcess : Int, @unchecked Sendable

Undocumented

  • Video will be recorded and send in parallel with the main request to liveness service.

    Declaration

    Objective-C

    RFSRecordingProcessAsynchronousUpload

    Swift

    case asynchronousUpload = 0
  • Video will be recorded, packaged and sent in one request to liveness service.

    Declaration

    Objective-C

    RFSRecordingProcessSynchronousUpload

    Swift

    case synchronousUpload = 1
  • Video will not be recorder.

    Declaration

    Objective-C

    RFSRecordingProcessNotUpload

    Swift

    case notUpload = 2