forked from ebhomengo/niki
14 lines
266 B
Go
14 lines
266 B
Go
|
package benefactoreparam
|
||
|
|
||
|
type SendOtpRequest struct {
|
||
|
PhoneNumber string `json:"phone_number"`
|
||
|
}
|
||
|
type SendOtpResponse struct {
|
||
|
PhoneNumber string `json:"phone_number"`
|
||
|
/*
|
||
|
this just use in test env
|
||
|
TODO - remove it after test
|
||
|
*/
|
||
|
Code string `json:"code"`
|
||
|
}
|