Method: MailSlurpClient::Complaint#list_invalid_properties
- Defined in:
- lib/mailslurp_client/models/complaint.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/mailslurp_client/models/complaint.rb', line 117 def list_invalid_properties invalid_properties = Array.new if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @complaint_recipient.nil? invalid_properties.push('invalid value for "complaint_recipient", complaint_recipient cannot be nil.') end if @created_at.nil? invalid_properties.push('invalid value for "created_at", created_at cannot be nil.') end if @updated_at.nil? invalid_properties.push('invalid value for "updated_at", updated_at cannot be nil.') end invalid_properties end |