RQHTTPService+RQVerificationSmsCode.h 612 B

12345678910111213141516171819202122232425
  1. //
  2. // RQHTTPService+RQVerificationSmsCode.h
  3. // YueXueChe
  4. //
  5. // Created by 张嵘 on 2019/1/14.
  6. // Copyright © 2019 RONG. All rights reserved.
  7. // 验证码验证
  8. #import "RQHTTPService.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQVerificationSmsCode)
  11. /**
  12. 验证码验证
  13. @param mobile 用户登录账号
  14. @param type 类型 1 注册验证码 2找回密码 3试学
  15. @param code 验证码
  16. @return Returns a signal which will send complete, or error
  17. */
  18. - (RACSignal *)verificationSmsCodeWithMobile:(NSString *)mobile type:(RQSMSCodeType)type code:(NSString *)code;
  19. @end
  20. NS_ASSUME_NONNULL_END