RGLOnlineProcessingConfig

@interface RGLOnlineProcessingConfig : NSObject

@property(nonatomic, assign, readonly) RGLOnlineProcessingMode mode;
@property(nonatomic, strong, nullable) RGLProcessParams *processParams;
@property(nonatomic, strong, nullable) NSString *serviceURL;
@property(nonatomic, assign) RGLOnlineProcessingImageFormat imageFormat;
@property(nonatomic, assign) CGFloat imageCompressionQuality;

/// Delegate that responds to request intercepting events.
/// Use the delegate to modify `URLRequest` requests before they are send to the web service.
@property(nonatomic, weak, nullable) id<RGLURLRequestInterceptingDelegate> requestInterceptingDelegate;

- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;

- (instancetype)initWithMode:(RGLOnlineProcessingMode)mode;

@end

Undocumented