// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package vendor_gw_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" ) // Error error // // swagger:model Error type Error struct { // error Error string `json:"error,omitempty"` // status // Maximum: 600 // Minimum: 100 Status int64 `json:"status,omitempty"` } // Validate validates this error func (m *Error) Validate(formats strfmt.Registry) error { var res []error if err := m.validateStatus(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *Error) validateStatus(formats strfmt.Registry) error { if swag.IsZero(m.Status) { // not required return nil } if err := validate.MinimumInt("status", "body", m.Status, 100, false); err != nil { return err } if err := validate.MaximumInt("status", "body", m.Status, 600, false); err != nil { return err } return nil } // ContextValidate validates this error based on context it is used func (m *Error) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *Error) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *Error) UnmarshalBinary(b []byte) error { var res Error if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }