Method: Falcon::ModelsRegistryCredentialsResponse#list_invalid_properties
- Defined in:
- lib/crimson-falcon/models/models_registry_credentials_response.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/crimson-falcon/models/models_registry_credentials_response.rb', line 104 def list_invalid_properties invalid_properties = Array.new if @errors.nil? invalid_properties.push('invalid value for "errors", errors cannot be nil.') end if @meta.nil? invalid_properties.push('invalid value for "meta", meta cannot be nil.') end if @resources.nil? invalid_properties.push('invalid value for "resources", resources cannot be nil.') end invalid_properties end |