Method: OryClient::ProjectApiKey#list_invalid_properties
- Defined in:
- lib/ory-client/models/project_api_key.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/ory-client/models/project_api_key.rb', line 104 def list_invalid_properties invalid_properties = Array.new if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @owner_id.nil? invalid_properties.push('invalid value for "owner_id", owner_id cannot be nil.') end invalid_properties end |