go-swagger-tutorial/models/timeofday.go

50 lines
1019 B
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 (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
)
// Timeofday timeofday
// swagger:model timeofday
type Timeofday struct {
// timeofday
Timeofday string `json:"timeofday,omitempty"`
}
// Validate validates this timeofday
func (m *Timeofday) Validate(formats strfmt.Registry) error {
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// MarshalBinary interface implementation
func (m *Timeofday) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Timeofday) UnmarshalBinary(b []byte) error {
var res Timeofday
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}