Files
EdgeCommon/pkg/serverconfigs/shared/http_header_policy_ref.go

12 lines
285 B
Go
Raw Permalink Normal View History

2020-09-23 18:43:50 +08:00
package shared
type HTTPHeaderPolicyRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"`
IsOn bool `yaml:"isOn" json:"isOn"`
HeaderPolicyId int64 `yaml:"headerPolicyId" json:"headerPolicyId"`
}
2020-09-26 08:07:24 +08:00
func (this *HTTPHeaderPolicyRef) Init() error {
return nil
}