32 lines
617 B
Go
32 lines
617 B
Go
|
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"
|
||
|
)
|
||
|
|
||
|
/*ProxyResponse proxy response
|
||
|
|
||
|
swagger:model ProxyResponse
|
||
|
*/
|
||
|
type ProxyResponse struct {
|
||
|
|
||
|
/* results from influx
|
||
|
*/
|
||
|
Results interface{} `json:"results,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this proxy response
|
||
|
func (m *ProxyResponse) Validate(formats strfmt.Registry) error {
|
||
|
var res []error
|
||
|
|
||
|
if len(res) > 0 {
|
||
|
return errors.CompositeValidationError(res...)
|
||
|
}
|
||
|
return nil
|
||
|
}
|