89 lines
1.7 KiB
Go
89 lines
1.7 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"
|
|
)
|
|
|
|
// UserAuth user auth
|
|
//
|
|
// swagger:model UserAuth
|
|
type UserAuth struct {
|
|
|
|
// code
|
|
// Required: true
|
|
Code *string `json:"code"`
|
|
|
|
// type
|
|
// Required: true
|
|
Type *string `json:"type"`
|
|
}
|
|
|
|
// Validate validates this user auth
|
|
func (m *UserAuth) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateCode(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateType(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserAuth) validateCode(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("code", "body", m.Code); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *UserAuth) validateType(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("type", "body", m.Type); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this user auth based on context it is used
|
|
func (m *UserAuth) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *UserAuth) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *UserAuth) UnmarshalBinary(b []byte) error {
|
|
var res UserAuth
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|