jaecoo-be/app/module/sales_agents/response/sales_agents.response.go

20 lines
576 B
Go
Raw Normal View History

2025-11-15 17:43:23 +00:00
package response
import (
"time"
)
type SalesAgentsResponse struct {
ID uint `json:"id"`
Name string `json:"name"`
JobTitle *string `json:"job_title"`
Phone *string `json:"phone"`
AgentType []string `json:"agent_type"`
ProfilePicturePath *string `json:"profile_picture_path"`
ProfilePictureUrl *string `json:"profile_picture_url"`
IsActive *bool `json:"is_active"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}