You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
// 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"
|
|
"gitlab.com/cyclops-utilities/datamodels"
|
|
)
|
|
|
|
// UDRReport u d r report
|
|
//
|
|
// swagger:model UDRReport
|
|
type UDRReport struct {
|
|
|
|
// metadata
|
|
Metadata datamodels.JSONdb `json:"Metadata,omitempty" gorm:"type:jsonb"`
|
|
|
|
// resource Id
|
|
ResourceID string `json:"ResourceId,omitempty"`
|
|
|
|
// resource name
|
|
ResourceName string `json:"ResourceName,omitempty"`
|
|
|
|
// resource type
|
|
ResourceType string `json:"ResourceType,omitempty"`
|
|
|
|
// unit
|
|
Unit string `json:"Unit,omitempty"`
|
|
|
|
// usage breakup
|
|
UsageBreakup datamodels.JSONdb `json:"UsageBreakup,omitempty" gorm:"type:jsonb"`
|
|
}
|
|
|
|
// Validate validates this u d r report
|
|
func (m *UDRReport) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *UDRReport) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *UDRReport) UnmarshalBinary(b []byte) error {
|
|
var res UDRReport
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|
|
|