145 lines
2.8 KiB
Go
145 lines
2.8 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"
|
|
)
|
|
|
|
// Customer customer
|
|
//
|
|
// swagger:model Customer
|
|
type Customer struct {
|
|
|
|
// billable
|
|
// Required: true
|
|
Billable *bool `json:"billable"`
|
|
|
|
// The assigned color in HTML hex format, eg. #dd1d00
|
|
Color string `json:"color,omitempty"`
|
|
|
|
// comment
|
|
Comment string `json:"comment,omitempty"`
|
|
|
|
// id
|
|
ID int64 `json:"id,omitempty"`
|
|
|
|
// name
|
|
// Required: true
|
|
// Max Length: 150
|
|
// Min Length: 2
|
|
Name *string `json:"name"`
|
|
|
|
// number
|
|
// Max Length: 50
|
|
Number string `json:"number,omitempty"`
|
|
|
|
// visible
|
|
// Required: true
|
|
Visible *bool `json:"visible"`
|
|
}
|
|
|
|
// Validate validates this customer
|
|
func (m *Customer) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateBillable(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateName(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateNumber(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateVisible(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Customer) validateBillable(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("billable", "body", m.Billable); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Customer) validateName(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("name", "body", m.Name); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MinLength("name", "body", *m.Name, 2); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.MaxLength("name", "body", *m.Name, 150); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Customer) validateNumber(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Number) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.MaxLength("number", "body", m.Number, 50); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Customer) validateVisible(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("visible", "body", m.Visible); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this customer based on context it is used
|
|
func (m *Customer) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Customer) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Customer) UnmarshalBinary(b []byte) error {
|
|
var res Customer
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|