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