Method: Plaid::UserCreateResponse#valid?

Defined in:
lib/plaid/models/user_create_response.rb

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



111
112
113
114
115
# File 'lib/plaid/models/user_create_response.rb', line 111

def valid?
  return false if @user_id.nil?
  return false if @request_id.nil?
  true
end