mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 02:30:56 +00:00
9 lines
315 B
Go
9 lines
315 B
Go
|
|
package oval_input
|
||
|
|
|
||
|
|
// ConstantVariableXML see https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/oval-definitions-schema.html#constant_variable.
|
||
|
|
type ConstantVariableXML struct {
|
||
|
|
Id string `xml:"id,attr"`
|
||
|
|
DataType string `xml:"datatype,attr"`
|
||
|
|
Values []string `xml:"value"`
|
||
|
|
}
|