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 }