69 lines
1.5 KiB
Go
69 lines
1.5 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 (
|
|
"context"
|
|
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// CommonLogTrexLog common log trex log
|
|
//
|
|
// swagger:model common.LogTrexLog
|
|
type CommonLogTrexLog struct {
|
|
|
|
// channel
|
|
Channel string `json:"channel,omitempty"`
|
|
|
|
// filename
|
|
Filename string `json:"filename,omitempty"`
|
|
|
|
// level
|
|
Level int64 `json:"level,omitempty"`
|
|
|
|
// line number
|
|
LineNumber int64 `json:"line_number,omitempty"`
|
|
|
|
// msg
|
|
Msg string `json:"msg,omitempty"`
|
|
|
|
// received timestamp
|
|
ReceivedTimestamp string `json:"received_timestamp,omitempty"`
|
|
|
|
// timestamp
|
|
Timestamp string `json:"timestamp,omitempty"`
|
|
}
|
|
|
|
// Validate validates this common log trex log
|
|
func (m *CommonLogTrexLog) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this common log trex log based on context it is used
|
|
func (m *CommonLogTrexLog) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CommonLogTrexLog) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CommonLogTrexLog) UnmarshalBinary(b []byte) error {
|
|
var res CommonLogTrexLog
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|