src.dualinventive.com/go/assets-service/rest/models/asset.go

53 lines
1004 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/swag"
)
// Asset asset
// swagger:model Asset
type Asset struct {
// id
ID int64 `json:"id,omitempty"`
// serial nr
SerialNr string `json:"serialNr,omitempty"`
// type code
TypeCode string `json:"typeCode,omitempty"`
// uid
UID string `json:"uid,omitempty"`
}
// Validate validates this asset
func (m *Asset) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Asset) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Asset) UnmarshalBinary(b []byte) error {
var res Asset
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}