21 lines
625 B
Go
21 lines
625 B
Go
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"`
|
|
StatusId *int `json:"status_id"`
|
|
IsActive *bool `json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|