Method: PureCloud::GroupSearchRequest#valid?
- Defined in:
- lib/purecloudplatformclientv2/models/group_search_request.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
98 99 100 101 102 103 |
# File 'lib/purecloudplatformclientv2/models/group_search_request.rb', line 98 def valid? allowed_values = ["ASC", "DESC", "SCORE"] if @sort_order && !allowed_values.include?(@sort_order) return false end end |