(all bool)
| 284 | } |
| 285 | |
| 286 | func (m *UpdateUserRequest) validate(all bool) error { |
| 287 | if m == nil { |
| 288 | return nil |
| 289 | } |
| 290 | |
| 291 | var errors []error |
| 292 | |
| 293 | if len(errors) > 0 { |
| 294 | return UpdateUserRequestMultiError(errors) |
| 295 | } |
| 296 | |
| 297 | return nil |
| 298 | } |
| 299 | |
| 300 | // UpdateUserRequestMultiError is an error wrapping multiple validation errors |
| 301 | // returned by UpdateUserRequest.ValidateAll() if the designated constraints |
no test coverage detected