forked from ebhomengo/niki
15 lines
392 B
Go
15 lines
392 B
Go
package benefactoreparam
|
|
|
|
type SendOtpRequest struct {
|
|
PhoneNumber string `json:"phone_number" example:"09198829528"`
|
|
}
|
|
type SendOtpResponse struct {
|
|
PhoneNumber string `json:"phone_number" example:"09198829528"`
|
|
/*
|
|
this just use in test .env
|
|
TODO - remove it after test
|
|
*/
|
|
Code string `json:"code"`
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|