lib/api/sfgate/sfgate_models/user_request.go

133 lines
2.9 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"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
2023-03-28 17:47:34 +00:00
// UserRequest user request
2021-08-05 19:37:53 +00:00
//
// swagger:model UserRequest
type UserRequest struct {
2023-03-28 17:47:34 +00:00
// API key
APIKey string `json:"APIKey,omitempty"`
// address
Address *Address `json:"Address,omitempty"`
// email
Email string `json:"Email,omitempty"`
// environment
Environment string `json:"Environment,omitempty"`
// first name
FirstName string `json:"FirstName,omitempty"`
// ID
ID string `json:"ID,omitempty"`
// last name
LastName string `json:"LastName,omitempty"`
// taxnexus account
TaxnexusAccount string `json:"TaxnexusAccount,omitempty"`
// title
Title string `json:"Title,omitempty"`
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-03-28 17:47:34 +00:00
if err := m.validateAddress(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-03-28 17:47:34 +00:00
func (m *UserRequest) validateAddress(formats strfmt.Registry) error {
if swag.IsZero(m.Address) { // not required
2021-08-05 19:37:53 +00:00
return nil
}
2023-03-28 17:47:34 +00:00
if m.Address != nil {
if err := m.Address.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Address")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("Address")
2023-03-22 20:49:01 +00:00
}
2023-03-28 17:47:34 +00:00
return err
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-03-28 17:47:34 +00:00
if err := m.contextValidateAddress(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-03-28 17:47:34 +00:00
func (m *UserRequest) contextValidateAddress(ctx context.Context, formats strfmt.Registry) error {
2023-03-22 20:49:01 +00:00
2023-03-28 17:47:34 +00:00
if m.Address != nil {
if err := m.Address.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Address")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("Address")
2021-08-05 19:37:53 +00:00
}
2023-03-28 17:47:34 +00:00
return err
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
}