Method: OryClient::IdentityPatchResponse#valid?
- Defined in:
- lib/ory-client/models/identity_patch_response.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
116 117 118 119 120 |
# File 'lib/ory-client/models/identity_patch_response.rb', line 116 def valid? action_validator = EnumAttributeValidator.new('String', ["create"]) return false unless action_validator.valid?(@action) true end |