56 lines
1.5 KiB
Go
56 lines
1.5 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 (
|
|
strfmt "github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// PostUIOpenwindowNewmailUnprocessableEntityBody post_ui_openwindow_newmail_unprocessable_entity
|
|
//
|
|
// Unprocessable entity
|
|
// swagger:model postUiOpenwindowNewmailUnprocessableEntityBody
|
|
|
|
type PostUIOpenwindowNewmailUnprocessableEntityBody struct {
|
|
|
|
// post_ui_openwindow_newmail_422_unprocessable_entity
|
|
//
|
|
// Unprocessable entity message
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
/* polymorph postUiOpenwindowNewmailUnprocessableEntityBody error false */
|
|
|
|
// Validate validates this post Ui openwindow newmail unprocessable entity body
|
|
func (m *PostUIOpenwindowNewmailUnprocessableEntityBody) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *PostUIOpenwindowNewmailUnprocessableEntityBody) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *PostUIOpenwindowNewmailUnprocessableEntityBody) UnmarshalBinary(b []byte) error {
|
|
var res PostUIOpenwindowNewmailUnprocessableEntityBody
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|