GiftManager

@interface GiftManager : NSObject <VOGiftManagerProtocol>

// anytime a voucher is updated (saved to cache) this signal will be signaled with the voucher
@property (nonatomic, readonly) RACSignal *voucherUpdatedSignal;

- (instancetype)initWithNetworkManager:(id<VONetworkManagerProtocol>)networkManager
                          cacheManager:(id<VOCacheProtocol>)cacheManger;

@end

Undocumented