feat: add resolver for verify_otp

This commit is contained in:
Lakhan Samani
2022-07-23 16:44:39 +05:30
parent f6029fb7bf
commit 44280be25a
5 changed files with 149 additions and 2 deletions

View File

@@ -383,6 +383,11 @@ type VerifyEmailInput struct {
Token string `json:"token"`
}
type VerifyOTPRequest struct {
Email string `json:"email"`
Otp string `json:"otp"`
}
type Webhook struct {
ID string `json:"id"`
EventName *string `json:"event_name"`