package response import "time" type UserLevelsResponse struct { ID uint `json:"id"` Name string `json:"name"` AliasName string `json:"alias_name"` LevelNumber int `json:"level_number"` ParentLevelId int `json:"parent_level_id"` ProvinceId int `json:"province_id"` IsActive bool `json:"is_active"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }