lib/api/sfgate/sfgate_models/user_request.go

133 lines
2.7 KiB
Go
Raw Permalink 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
import (
2023-03-22 20:49:01 +00:00
"context"
stderrors "errors"
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/jsonutils"
"github.com/go-openapi/swag/typeutils"
2021-08-05 19:37:53 +00:00
)
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 typeutils.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 typeutils.IsZero(m.Data[i]) { // not required
2023-04-11 14:59:35 +00:00
continue
}
if m.Data[i] != nil {
if err := m.Data[i].Validate(formats); err != nil {
ve := new(errors.Validation)
if stderrors.As(err, &ve) {
2023-04-11 14:59:35 +00:00
return ve.ValidateName("data" + "." + strconv.Itoa(i))
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-04-11 14:59:35 +00:00
return ce.ValidateName("data" + "." + strconv.Itoa(i))
}
2023-04-11 14:59:35 +00:00
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 typeutils.IsZero(m.Data[i]) { // not required
return nil
}
2023-04-11 14:59:35 +00:00
if err := m.Data[i].ContextValidate(ctx, formats); err != nil {
ve := new(errors.Validation)
if stderrors.As(err, &ve) {
2023-04-11 14:59:35 +00:00
return ve.ValidateName("data" + "." + strconv.Itoa(i))
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-04-11 14:59:35 +00:00
return ce.ValidateName("data" + "." + strconv.Itoa(i))
}
2023-04-11 14:59:35 +00:00
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 jsonutils.WriteJSON(m)
2021-08-05 19:37:53 +00:00
}
// UnmarshalBinary interface implementation
func (m *UserRequest) UnmarshalBinary(b []byte) error {
var res UserRequest
if err := jsonutils.ReadJSON(b, &res); err != nil {
2021-08-05 19:37:53 +00:00
return err
}
*m = res
return nil
}