Files
ai-agent/internal/pkg/dto/response/customer_contact_response.go
T

19 lines
712 B
Go
Raw Normal View History

2026-04-09 10:01:23 +08:00
package response
import "agent-desk/internal/pkg/enums"
2026-04-09 10:01:23 +08:00
type CustomerContactResponse struct {
ID int64 `json:"id"`
CustomerID int64 `json:"customerId"`
ContactType enums.ContactType `json:"contactType"`
ContactValue string `json:"contactValue"`
IsPrimary bool `json:"isPrimary"`
IsVerified bool `json:"isVerified"`
VerifiedAt string `json:"verifiedAt,omitempty"`
Source string `json:"source"`
Status enums.Status `json:"status"`
Remark string `json:"remark"`
CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"`
}