63 lines
1.4 KiB
Go
63 lines
1.4 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"
|
|
)
|
|
|
|
// CommonCarVersionLogs common car version logs
|
|
//
|
|
// swagger:model common.CarVersionLogs
|
|
type CommonCarVersionLogs struct {
|
|
|
|
// created at
|
|
CreatedAt string `json:"created_at,omitempty"`
|
|
|
|
// id
|
|
ID int64 `json:"id,omitempty"`
|
|
|
|
// version
|
|
Version string `json:"version,omitempty"`
|
|
|
|
// version source
|
|
VersionSource string `json:"version_source,omitempty"`
|
|
|
|
// vin
|
|
Vin string `json:"vin,omitempty"`
|
|
}
|
|
|
|
// Validate validates this common car version logs
|
|
func (m *CommonCarVersionLogs) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this common car version logs based on context it is used
|
|
func (m *CommonCarVersionLogs) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CommonCarVersionLogs) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CommonCarVersionLogs) UnmarshalBinary(b []byte) error {
|
|
var res CommonCarVersionLogs
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|