2020-11-30 09:37:17 +00:00
|
|
|
// 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 (
|
2022-01-11 15:45:34 +00:00
|
|
|
"context"
|
2020-11-30 09:37:17 +00:00
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/go-openapi/errors"
|
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetDecisionsResponse GetDecisionsResponse
|
|
|
|
//
|
|
|
|
// swagger:model GetDecisionsResponse
|
|
|
|
type GetDecisionsResponse []*Decision
|
|
|
|
|
|
|
|
// Validate validates this get decisions response
|
|
|
|
func (m GetDecisionsResponse) Validate(formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
for i := 0; i < len(m); i++ {
|
|
|
|
if swag.IsZero(m[i]) { // not required
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if m[i] != nil {
|
|
|
|
if err := m[i].Validate(formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName(strconv.Itoa(i))
|
2022-01-11 15:45:34 +00:00
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName(strconv.Itoa(i))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validate this get decisions response based on the context it is used
|
|
|
|
func (m GetDecisionsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
for i := 0; i < len(m); i++ {
|
|
|
|
|
|
|
|
if m[i] != nil {
|
2024-03-07 13:25:25 +00:00
|
|
|
|
|
|
|
if swag.IsZero(m[i]) { // not required
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-11 15:45:34 +00:00
|
|
|
if err := m[i].ContextValidate(ctx, formats); err != nil {
|
|
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
|
|
return ve.ValidateName(strconv.Itoa(i))
|
|
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
|
|
return ce.ValidateName(strconv.Itoa(i))
|
2020-11-30 09:37:17 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|