mirror of
https://github.com/bloomberg/goldpinger.git
synced 2026-08-23 21:36:25 +00:00
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package operations
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/go-openapi/runtime"
|
|
|
|
"github.com/bloomberg/goldpinger/v3/pkg/models"
|
|
)
|
|
|
|
// PingOKCode is the HTTP code returned for type PingOK
|
|
const PingOKCode int = 200
|
|
|
|
/*PingOK return success
|
|
|
|
swagger:response pingOK
|
|
*/
|
|
type PingOK struct {
|
|
|
|
/*
|
|
In: Body
|
|
*/
|
|
Payload *models.PingResults `json:"body,omitempty"`
|
|
}
|
|
|
|
// NewPingOK creates PingOK with default headers values
|
|
func NewPingOK() *PingOK {
|
|
|
|
return &PingOK{}
|
|
}
|
|
|
|
// WithPayload adds the payload to the ping o k response
|
|
func (o *PingOK) WithPayload(payload *models.PingResults) *PingOK {
|
|
o.Payload = payload
|
|
return o
|
|
}
|
|
|
|
// SetPayload sets the payload to the ping o k response
|
|
func (o *PingOK) SetPayload(payload *models.PingResults) {
|
|
o.Payload = payload
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *PingOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.WriteHeader(200)
|
|
if o.Payload != nil {
|
|
payload := o.Payload
|
|
if err := producer.Produce(rw, payload); err != nil {
|
|
panic(err) // let the recovery middleware deal with this
|
|
}
|
|
}
|
|
}
|