forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailer.validator.pb.go
63 lines (59 loc) · 1.83 KB
/
mailer.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
61
62
63
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: mailer.proto
package mailer
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 *User) Validate() error {
return nil
}
func (this *Mail) Validate() error {
if this.From != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.From); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("From", err)
}
}
for _, item := range this.To {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("To", err)
}
}
}
for _, item := range this.Cc {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Cc", err)
}
}
}
// Validation of proto3 map<> fields is unsupported.
if this.Sender != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Sender); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Sender", err)
}
}
return nil
}
func (this *SendMailRequest) Validate() error {
if this.Mail != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Mail); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Mail", err)
}
}
return nil
}
func (this *SendMailResponse) Validate() error {
return nil
}
func (this *ConsumeQueueRequest) Validate() error {
return nil
}
func (this *ConsumeQueueResponse) Validate() error {
return nil
}