-
Notifications
You must be signed in to change notification settings - Fork 180
/
cellsapi-graph.validator.pb.go
66 lines (62 loc) · 1.85 KB
/
cellsapi-graph.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
64
65
66
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: cellsapi-graph.proto
package rest
import (
fmt "fmt"
math "math"
proto "google.golang.org/protobuf/proto"
_ "github.com/pydio/cells/v4/common/proto/idm"
_ "github.com/pydio/cells/v4/common/proto/tree"
github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
func (this *UserStateRequest) Validate() error {
return nil
}
func (this *UserStateResponse) Validate() error {
for _, item := range this.Workspaces {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Workspaces", err)
}
}
}
// Validation of proto3 map<> fields is unsupported.
return nil
}
func (this *RelationRequest) Validate() error {
return nil
}
func (this *RelationResponse) Validate() error {
for _, item := range this.SharedCells {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("SharedCells", err)
}
}
}
for _, item := range this.BelongsToTeams {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("BelongsToTeams", err)
}
}
}
return nil
}
func (this *RecommendRequest) Validate() error {
return nil
}
func (this *RecommendResponse) Validate() error {
for _, item := range this.Nodes {
if item != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Nodes", err)
}
}
}
return nil
}