| 62 | } |
| 63 | |
| 64 | type MatchingRule struct { |
| 65 | ID int64 `json:"-"` |
| 66 | RuleID string `json:"rule_id"` |
| 67 | CreatedAt time.Time `json:"created_at"` |
| 68 | UpdatedAt time.Time `json:"updated_at"` |
| 69 | Name string `json:"name"` |
| 70 | Description string `json:"description"` |
| 71 | Criteria []MatchingCriteria `json:"criteria"` |
| 72 | } |
| 73 | |
| 74 | type MatchingCriteria struct { |
| 75 | Field string `json:"field"` |
nothing calls this directly
no outgoing calls
no test coverage detected