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

72 lines
1.8 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/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// RequestWasHandledResponse The response payload sent when there is an attempt to access already handled request.
//
// swagger:model requestWasHandledResponse
type RequestWasHandledResponse struct {
// Original request URL to which you should redirect the user if request was already handled.
// Required: true
RedirectTo *string `json:"redirect_to"`
}
// Validate validates this request was handled response
func (m *RequestWasHandledResponse) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateRedirectTo(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *RequestWasHandledResponse) validateRedirectTo(formats strfmt.Registry) error {
if err := validate.Required("redirect_to", "body", m.RedirectTo); err != nil {
return err
}
return nil
}
// ContextValidate validates this request was handled response based on context it is used
func (m *RequestWasHandledResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *RequestWasHandledResponse) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *RequestWasHandledResponse) UnmarshalBinary(b []byte) error {
var res RequestWasHandledResponse
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}