18 lines
267 B
Go
18 lines
267 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
type CustomerResolutionRequest struct {
|
|
ID *int64
|
|
Name string
|
|
Email string
|
|
PhoneNumber string
|
|
BirthDate time.Time
|
|
}
|
|
|
|
type CustomerCheckResponse struct {
|
|
Exists bool
|
|
Customer *Customer
|
|
Message string
|
|
}
|