forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.validator.pb.go
60 lines (56 loc) · 1.65 KB
/
log.validator.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: log.proto
package log
import github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (this *RecorderPutResponse) Validate() error {
return nil
}
func (this *Log) Validate() error {
return nil
}
func (this *LogMessage) Validate() error {
return nil
}
func (this *ListLogRequest) Validate() error {
return nil
}
func (this *ListLogResponse) Validate() error {
if this.LogMessage != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.LogMessage); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("LogMessage", err)
}
}
return nil
}
func (this *DeleteLogsResponse) Validate() error {
return nil
}
func (this *TimeRangeResponse) Validate() error {
if this.TimeRangeResult != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.TimeRangeResult); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("TimeRangeResult", err)
}
}
if this.TimeRangeCursor != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.TimeRangeCursor); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("TimeRangeCursor", err)
}
}
return nil
}
func (this *TimeRangeResult) Validate() error {
return nil
}
func (this *TimeRangeRequest) Validate() error {
return nil
}
func (this *TimeRangeCursor) Validate() error {
return nil
}