RQHTTPService+RQGetVideoVip.h 635 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RQHTTPService+RQGetVideoVip.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/3/4.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. #import "RQVideoVipModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQHTTPService (RQGetVideoVip)
  12. /**
  13. 获取用户vip信息
  14. @param userId 用户Id
  15. @return Returns a signal which will send complete, or error.
  16. */
  17. - (RACSignal *)getVideoVipWithUserId:(NSString *)userId;
  18. /**
  19. 获取用户vip信息
  20. @param userId 用户Id
  21. @return Returns a signal which will send complete, or error.
  22. */
  23. - (RACSignal *)getVipWithUserId:(NSString *)userId;
  24. @end
  25. NS_ASSUME_NONNULL_END