RGLBackendProcessingConfig
Objective-C
@interface RGLBackendProcessingConfig : NSObject
@property(nonatomic, strong, nullable) NSString *url;
@property(nonatomic, strong, nullable) NSDictionary *httpHeaders;
@property(nonatomic, strong, nullable) NSNumber *rfidServerSideChipVerification;
/// Timeout in seconds that can be configured for backend transaction creation and package finalization.
@property(nonatomic, strong, nullable) NSNumber *timeoutConnection;
@end
Swift
class RGLBackendProcessingConfig : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, nullable) NSString *url
Swift
var url: String? { get set }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, nullable) NSDictionary *httpHeaders
Swift
var httpHeaders: [AnyHashable : Any]? { get set }
-
Undocumented
Declaration
Objective-C
@property(nonatomic, strong, nullable) NSNumber *rfidServerSideChipVerification
Swift
var rfidServerSideChipVerification: NSNumber? { get set }
-
Timeout in seconds that can be configured for backend transaction creation and package finalization.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSNumber *timeoutConnection;
Swift
var timeoutConnection: NSNumber? { get set }