Method: OryClient::ContinueWithVerificationUi#list_invalid_properties

Defined in:
lib/ory-client/models/continue_with_verification_ui.rb

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/ory-client/models/continue_with_verification_ui.rb', line 99

def list_invalid_properties
  invalid_properties = Array.new
  if @action.nil?
    invalid_properties.push('invalid value for "action", action cannot be nil.')
  end

  if @flow.nil?
    invalid_properties.push('invalid value for "flow", flow cannot be nil.')
  end

  invalid_properties
end