29 lines
680 B
Go
29 lines
680 B
Go
package json
|
|
|
|
import "gitea.local.lab/Lbenedar/foundry_helper_service/internal/foundry/temp_models/db"
|
|
|
|
type PackageWarningsData struct {
|
|
Id string `json:"id"`
|
|
Type string `json:"type"`
|
|
Warning []string `json:"warning"`
|
|
Error []string `json:"error"`
|
|
Reinstallable bool `json:"reinstallable"`
|
|
Manifest string `json:"manifest,omitempty"`
|
|
}
|
|
|
|
func (p *PackageWarningsData) ToDB(dest *db.PackageWarningsData) bool {
|
|
if dest == nil {
|
|
return false
|
|
}
|
|
|
|
dest.ID = p.Id
|
|
dest.Type = p.Type
|
|
dest.Reinstallable = p.Reinstallable
|
|
dest.Manifest = p.Manifest
|
|
|
|
copy(dest.Warning, p.Warning)
|
|
copy(dest.Error, p.Error)
|
|
|
|
return true
|
|
}
|