Method: PulpcoreClient::UserGroup#valid?
- Defined in:
- lib/pulpcore_client/models/user_group.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
91 92 93 94 95 96 97 |
# File 'lib/pulpcore_client/models/user_group.rb', line 91 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if @name.nil? return false if @name.to_s.length > 150 return false if @name.to_s.length < 1 true end |