Method: OpenapiClient::AuthnMeMemberRead#list_invalid_properties
- Defined in:
- lib/openapi_client/models/authn_me_member_read.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/openapi_client/models/authn_me_member_read.rb', line 160 def list_invalid_properties invalid_properties = Array.new if @id.nil? invalid_properties.push('invalid value for "id", id cannot be nil.') end if @email.nil? invalid_properties.push('invalid value for "email", email cannot be nil.') end if @is_onboarding.nil? invalid_properties.push('invalid value for "is_onboarding", is_onboarding cannot be nil.') end if @onboarding_step.nil? invalid_properties.push('invalid value for "onboarding_step", onboarding_step cannot be nil.') end invalid_properties end |