lib/api/sfgate/sfgate_models/user_request.go

121 lines
2.6 KiB
Go
Raw Normal View History

2021-08-05 19:37:53 +00:00
// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-03-28 17:47:34 +00:00
package sfgate_models
2021-08-05 19:37:53 +00:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
2023-03-22 20:49:01 +00:00
"context"
2023-04-11 14:59:35 +00:00
"strconv"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
2023-04-11 14:59:35 +00:00
// UserRequest An array of User Objects to post
2021-08-05 19:37:53 +00:00
//
// swagger:model UserRequest
type UserRequest struct {
2023-04-11 14:59:35 +00:00
// data
Data []*User `json:"data"`
2021-08-05 19:37:53 +00:00
}
// Validate validates this user request
func (m *UserRequest) Validate(formats strfmt.Registry) error {
var res []error
2023-04-11 14:59:35 +00:00
if err := m.validateData(formats); err != nil {
2021-08-05 19:37:53 +00:00
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
2023-04-11 14:59:35 +00:00
func (m *UserRequest) validateData(formats strfmt.Registry) error {
if swag.IsZero(m.Data) { // not required
2021-08-05 19:37:53 +00:00
return nil
}
2023-04-11 14:59:35 +00:00
for i := 0; i < len(m.Data); i++ {
if swag.IsZero(m.Data[i]) { // not required
continue
}
if m.Data[i] != nil {
if err := m.Data[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("data" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("data" + "." + strconv.Itoa(i))
}
return err
2023-03-22 20:49:01 +00:00
}
}
2023-04-11 14:59:35 +00:00
2023-03-22 20:49:01 +00:00
}
return nil
}
// ContextValidate validate this user request based on the context it is used
func (m *UserRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
2023-04-11 14:59:35 +00:00
if err := m.contextValidateData(ctx, formats); err != nil {
2023-03-22 20:49:01 +00:00
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
2023-04-11 14:59:35 +00:00
func (m *UserRequest) contextValidateData(ctx context.Context, formats strfmt.Registry) error {
for i := 0; i < len(m.Data); i++ {
2023-03-22 20:49:01 +00:00
2023-04-11 14:59:35 +00:00
if m.Data[i] != nil {
if err := m.Data[i].ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("data" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("data" + "." + strconv.Itoa(i))
}
return err
2021-08-05 19:37:53 +00:00
}
}
2023-04-11 14:59:35 +00:00
2021-08-05 19:37:53 +00:00
}
return nil
}
// MarshalBinary interface implementation
func (m *UserRequest) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UserRequest) UnmarshalBinary(b []byte) error {
var res UserRequest
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}