2024-08-01 10:20:18 +00:00
|
|
|
package adminagentparam
|
2024-06-10 14:49:13 +00:00
|
|
|
|
|
|
|
type GetAllAgentResponse struct {
|
2024-09-10 20:55:19 +00:00
|
|
|
Data []Data `json:"data"`
|
2024-06-10 14:49:13 +00:00
|
|
|
}
|
|
|
|
|
2024-09-10 20:55:19 +00:00
|
|
|
type Data struct {
|
2024-06-10 14:49:13 +00:00
|
|
|
ID uint `json:"id" example:"1"`
|
|
|
|
FirstName string `json:"first_name" example:"John"`
|
|
|
|
LastName string `json:"last_name" example:"Doe"`
|
|
|
|
PhoneNumber string `json:"phone_number" example:"09123456789"`
|
|
|
|
}
|