95 lines
2.2 KiB
Go
95 lines
2.2 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"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// PostParamsBody post params body
|
|
//
|
|
// swagger:model postParamsBody
|
|
type PostParamsBody struct {
|
|
|
|
// json input to convert to spreadsheet
|
|
InData interface{} `json:"in-data,omitempty"`
|
|
|
|
// Name of the json input file to utilise
|
|
Infile string `json:"infile,omitempty"`
|
|
|
|
// the filename of the output spreadsheet
|
|
// Required: true
|
|
OutFilename *string `json:"out-filename"`
|
|
|
|
// Label for the worksheet created in the spreadsheet
|
|
// Required: true
|
|
WorksheetName *string `json:"worksheet-name"`
|
|
}
|
|
|
|
// Validate validates this post params body
|
|
func (m *PostParamsBody) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateOutFilename(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateWorksheetName(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PostParamsBody) validateOutFilename(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("out-filename", "body", m.OutFilename); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostParamsBody) validateWorksheetName(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("worksheet-name", "body", m.WorksheetName); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this post params body based on context it is used
|
|
func (m *PostParamsBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
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
|
|
}
|