-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete_tool.validator.pb.go
41 lines (36 loc) · 1.46 KB
/
delete_tool.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
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: delete_tool.proto
package basic
import (
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
_ "github.com/gogo/protobuf/types"
_ "github.com/mwitkow/go-proto-validators"
github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
math "math"
regexp "regexp"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _regex_DeleteToolRequest_VersionId = regexp.MustCompile(`^[a-fA-F0-9]{32}$`)
var _regex_DeleteToolRequest_ToolId = regexp.MustCompile(`^[a-fA-F0-9]{32}$`)
func (this *DeleteToolRequest) Validate() error {
if !_regex_DeleteToolRequest_VersionId.MatchString(this.VersionId) {
return github_com_mwitkow_go_proto_validators.FieldError("VersionId", fmt.Errorf(`value '%v' must be a string conforming to regex "^[a-fA-F0-9]{32}$"`, this.VersionId))
}
if !_regex_DeleteToolRequest_ToolId.MatchString(this.ToolId) {
return github_com_mwitkow_go_proto_validators.FieldError("ToolId", fmt.Errorf(`value '%v' must be a string conforming to regex "^[a-fA-F0-9]{32}$"`, this.ToolId))
}
return nil
}
func (this *DeleteToolResponseWrapper) Validate() error {
if this.Data != nil {
if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(this.Data); err != nil {
return github_com_mwitkow_go_proto_validators.FieldError("Data", err)
}
}
return nil
}