88 lines
1.9 KiB
Go
88 lines
1.9 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"
|
||
|
)
|
||
|
|
||
|
// TeamCollection team collection
|
||
|
//
|
||
|
// swagger:model TeamCollection
|
||
|
type TeamCollection struct {
|
||
|
|
||
|
// The assigned color in HTML hex format, eg. #dd1d00
|
||
|
Color string `json:"color,omitempty"`
|
||
|
|
||
|
// id
|
||
|
ID int64 `json:"id,omitempty"`
|
||
|
|
||
|
// Team name
|
||
|
// Required: true
|
||
|
// Max Length: 100
|
||
|
// Min Length: 2
|
||
|
Name *string `json:"name"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this team collection
|
||
|
func (m *TeamCollection) Validate(formats strfmt.Registry) error {
|
||
|
var res []error
|
||
|
|
||
|
if err := m.validateName(formats); err != nil {
|
||
|
res = append(res, err)
|
||
|
}
|
||
|
|
||
|
if len(res) > 0 {
|
||
|
return errors.CompositeValidationError(res...)
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *TeamCollection) 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, 100); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validates this team collection based on context it is used
|
||
|
func (m *TeamCollection) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *TeamCollection) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *TeamCollection) UnmarshalBinary(b []byte) error {
|
||
|
var res TeamCollection
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|