Method: OryClient::SettingsFlow#valid?
- Defined in:
- lib/ory-client/models/settings_flow.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/ory-client/models/settings_flow.rb', line 186 def valid? return false if @expires_at.nil? return false if @id.nil? return false if @identity.nil? return false if @issued_at.nil? return false if @request_url.nil? return false if @state.nil? return false if @type.nil? return false if @ui.nil? true end |