120 lines
2.7 KiB
Go
120 lines
2.7 KiB
Go
// 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 (
|
|
"context"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// PostParamsBody post params body
|
|
//
|
|
// swagger:model postParamsBody
|
|
type PostParamsBody struct {
|
|
|
|
// the filename of the output spreadsheet
|
|
OutFilename *string `json:"out-filename,omitempty"`
|
|
|
|
// Array of worksheets to create in spreadsheet
|
|
Sheets []*PostParamsBodySheetsItems `json:"sheets"`
|
|
}
|
|
|
|
// Validate validates this post params body
|
|
func (m *PostParamsBody) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateSheets(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PostParamsBody) validateSheets(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Sheets) { // not required
|
|
return nil
|
|
}
|
|
|
|
for i := 0; i < len(m.Sheets); i++ {
|
|
if swag.IsZero(m.Sheets[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Sheets[i] != nil {
|
|
if err := m.Sheets[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("sheets" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("sheets" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this post params body based on the context it is used
|
|
func (m *PostParamsBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateSheets(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PostParamsBody) contextValidateSheets(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Sheets); i++ {
|
|
|
|
if m.Sheets[i] != nil {
|
|
if err := m.Sheets[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("sheets" + "." + strconv.Itoa(i))
|
|
} else if ce, ok := err.(*errors.CompositeError); ok {
|
|
return ce.ValidateName("sheets" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *PostParamsBody) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *PostParamsBody) UnmarshalBinary(b []byte) error {
|
|
var res PostParamsBody
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|