// 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" "github.com/go-openapi/validate" ) // Forbidden Forbidden // // Forbidden model // swagger:model forbidden type Forbidden struct { // Forbidden message // Required: true Error *string `json:"error"` // Status code received from SSO SsoStatus int64 `json:"sso_status,omitempty"` } // Validate validates this forbidden func (m *Forbidden) Validate(formats strfmt.Registry) error { var res []error if err := m.validateError(formats); err != nil { // prop res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *Forbidden) validateError(formats strfmt.Registry) error { if err := validate.Required("error", "body", m.Error); err != nil { return err } return nil } // MarshalBinary interface implementation func (m *Forbidden) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *Forbidden) UnmarshalBinary(b []byte) error { var res Forbidden if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }