Method: MailSlurpClient::GenerateBimiRecordResults#list_invalid_properties
- Defined in:
- lib/mailslurp_client/models/generate_bimi_record_results.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/mailslurp_client/models/generate_bimi_record_results.rb', line 108 def list_invalid_properties invalid_properties = Array.new if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end if @type.nil? invalid_properties.push('invalid value for "type", type cannot be nil.') end if @ttl.nil? invalid_properties.push('invalid value for "ttl", ttl cannot be nil.') end if @value.nil? invalid_properties.push('invalid value for "value", value cannot be nil.') end invalid_properties end |