2025-03-08 00:35:23 +07:00
|
|
|
package entity
|
|
|
|
|
|
2025-03-15 15:51:18 +08:00
|
|
|
import "time"
|
|
|
|
|
|
2025-03-08 00:35:23 +07:00
|
|
|
type CustomerResolutionRequest struct {
|
|
|
|
|
ID *int64
|
|
|
|
|
Name string
|
|
|
|
|
Email string
|
|
|
|
|
PhoneNumber string
|
2025-03-15 15:51:18 +08:00
|
|
|
BirthDate time.Time
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CustomerCheckResponse struct {
|
|
|
|
|
Exists bool
|
|
|
|
|
Customer *Customer
|
|
|
|
|
Message string
|
2025-03-08 00:35:23 +07:00
|
|
|
}
|