gtslib/models/filter_context.go
decentral1se e4ade9c758
All checks were successful
continuous-integration/drone/push Build is passing
feat: init
2024-07-31 22:47:18 +02:00

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
}