dbb420f79e
Co-authored-by: AlteredCoder Co-authored-by: erenJag
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// MetricsSoftInfo MetricsSoftInfo
|
|
//
|
|
// Software version info (so we can warn users about out-of-date software). The software name and the version are "guessed" from the user-agent
|
|
//
|
|
// swagger:model MetricsSoftInfo
|
|
type MetricsSoftInfo struct {
|
|
|
|
// name of the component
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// software version
|
|
Version string `json:"version,omitempty"`
|
|
}
|
|
|
|
// Validate validates this metrics soft info
|
|
func (m *MetricsSoftInfo) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *MetricsSoftInfo) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *MetricsSoftInfo) UnmarshalBinary(b []byte) error {
|
|
var res MetricsSoftInfo
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|