All checks were successful
continuous-integration/drone/push Build is passing
30 lines
760 B
Go
30 lines
760 B
Go
// 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"
|
|
)
|
|
|
|
// FilterContext FilterContext represents the context in which to apply a filter.
|
|
//
|
|
// v1 and v2 filter APIs use the same set of contexts.
|
|
//
|
|
// swagger:model FilterContext
|
|
type FilterContext string
|
|
|
|
// Validate validates this filter context
|
|
func (m FilterContext) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this filter context based on context it is used
|
|
func (m FilterContext) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|