79 lines
1.6 KiB
Go
79 lines
1.6 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/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// CommonVINs common v i ns
|
|
//
|
|
// swagger:model common.VINs
|
|
type CommonVINs struct {
|
|
|
|
// vins
|
|
// Required: true
|
|
// Min Items: 1
|
|
Vins []string `json:"vins"`
|
|
}
|
|
|
|
// Validate validates this common v i ns
|
|
func (m *CommonVINs) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateVins(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CommonVINs) validateVins(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("vins", "body", m.Vins); err != nil {
|
|
return err
|
|
}
|
|
|
|
iVinsSize := int64(len(m.Vins))
|
|
|
|
if err := validate.MinItems("vins", "body", iVinsSize, 1); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this common v i ns based on context it is used
|
|
func (m *CommonVINs) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CommonVINs) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CommonVINs) UnmarshalBinary(b []byte) error {
|
|
var res CommonVINs
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|