forked from ebhomengo/niki
13 lines
326 B
Go
13 lines
326 B
Go
package adminagentparam
|
|
|
|
type GetAllAgentResponse struct {
|
|
Data []Data `json:"data"`
|
|
}
|
|
|
|
type Data struct {
|
|
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"`
|
|
}
|