Method: OryClient::SubjectSet#valid?

Defined in:
lib/ory-client/models/subject_set.rb

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



112
113
114
115
116
117
118
# File 'lib/ory-client/models/subject_set.rb', line 112

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  return false if @namespace.nil?
  return false if @object.nil?
  return false if @relation.nil?
  true
end