RFSFaceSDKVersion

Objective-C

@interface RFSFaceSDKVersion : NSObject

/// Version of the API module.
@property(nonatomic, readonly, strong, nullable) NSString *api;
/// Version of the CORE module.
@property(nonatomic, readonly, strong, nullable) NSString *core;
/// CORE module variant.
@property(nonatomic, readonly, strong, nullable) NSString *coreMode;

@end

Swift

class RFSFaceSDKVersion : NSObject

Undocumented

  • api

    Version of the API module.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *api;

    Swift

    var api: String? { get }
  • Version of the CORE module.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *core;

    Swift

    var core: String? { get }
  • CORE module variant.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *coreMode;

    Swift

    var coreMode: String? { get }