2026-04-09 10:01:23 +08:00
|
|
|
package response
|
|
|
|
|
|
2026-05-30 21:19:36 +08:00
|
|
|
import "cs-ai-agent/internal/pkg/enums"
|
2026-04-09 10:01:23 +08:00
|
|
|
|
|
|
|
|
type CustomerResponse struct {
|
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
Gender enums.Gender `json:"gender"`
|
|
|
|
|
CompanyID int64 `json:"companyId"`
|
|
|
|
|
Company *CompanyResponse `json:"company"`
|
|
|
|
|
LastActiveAt string `json:"lastActiveAt"`
|
|
|
|
|
PrimaryMobile string `json:"primaryMobile"`
|
|
|
|
|
PrimaryEmail string `json:"primaryEmail"`
|
|
|
|
|
Status enums.Status `json:"status"`
|
|
|
|
|
Remark string `json:"remark"`
|
|
|
|
|
CreatedAt string `json:"createdAt"`
|
|
|
|
|
UpdatedAt string `json:"updatedAt"`
|
|
|
|
|
}
|