lib/api/sfgate/sfgate_models/prompt_request.go

133 lines
2.8 KiB
Go
Raw Permalink Normal View History

2023-06-05 19:44:18 +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
package sfgate_models
import (
"context"
stderrors "errors"
2023-06-05 19:44:18 +00:00
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag/jsonutils"
"github.com/go-openapi/swag/typeutils"
2023-06-05 19:44:18 +00:00
)
// PromptRequest An array of Prompt objects
//
// swagger:model PromptRequest
type PromptRequest struct {
// data
Data []*Prompt `json:"Data"`
}
// Validate validates this prompt request
func (m *PromptRequest) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateData(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *PromptRequest) validateData(formats strfmt.Registry) error {
if typeutils.IsZero(m.Data) { // not required
2023-06-05 19:44:18 +00:00
return nil
}
for i := 0; i < len(m.Data); i++ {
if typeutils.IsZero(m.Data[i]) { // not required
2023-06-05 19:44:18 +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-06-05 19:44:18 +00:00
return ve.ValidateName("Data" + "." + strconv.Itoa(i))
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-06-05 19:44:18 +00:00
return ce.ValidateName("Data" + "." + strconv.Itoa(i))
}
2023-06-05 19:44:18 +00:00
return err
}
}
}
return nil
}
// ContextValidate validate this prompt request based on the context it is used
func (m *PromptRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateData(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *PromptRequest) contextValidateData(ctx context.Context, formats strfmt.Registry) error {
for i := 0; i < len(m.Data); i++ {
if m.Data[i] != nil {
if typeutils.IsZero(m.Data[i]) { // not required
return nil
}
2023-06-05 19:44:18 +00:00
if err := m.Data[i].ContextValidate(ctx, formats); err != nil {
ve := new(errors.Validation)
if stderrors.As(err, &ve) {
2023-06-05 19:44:18 +00:00
return ve.ValidateName("Data" + "." + strconv.Itoa(i))
}
ce := new(errors.CompositeError)
if stderrors.As(err, &ce) {
2023-06-05 19:44:18 +00:00
return ce.ValidateName("Data" + "." + strconv.Itoa(i))
}
2023-06-05 19:44:18 +00:00
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *PromptRequest) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return jsonutils.WriteJSON(m)
2023-06-05 19:44:18 +00:00
}
// UnmarshalBinary interface implementation
func (m *PromptRequest) UnmarshalBinary(b []byte) error {
var res PromptRequest
if err := jsonutils.ReadJSON(b, &res); err != nil {
2023-06-05 19:44:18 +00:00
return err
}
*m = res
return nil
}