peridot/vendor/github.com/ory/hydra-client-go/models/health_not_ready_status.go

51 lines
1.2 KiB
Go
Raw Normal View History

2022-07-07 20:11:50 +00:00
// 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/strfmt"
"github.com/go-openapi/swag"
)
// HealthNotReadyStatus health not ready status
//
// swagger:model healthNotReadyStatus
type HealthNotReadyStatus struct {
// Errors contains a list of errors that caused the not ready status.
Errors map[string]string `json:"errors,omitempty"`
}
// Validate validates this health not ready status
func (m *HealthNotReadyStatus) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this health not ready status based on context it is used
func (m *HealthNotReadyStatus) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *HealthNotReadyStatus) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *HealthNotReadyStatus) UnmarshalBinary(b []byte) error {
var res HealthNotReadyStatus
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}