Method: CyberSource::PaymentsProductsPayerAuthenticationConfigurationInformation#_to_hash

Defined in:
lib/cybersource_rest_client/models/payments_products_payer_authentication_configuration_information.rb

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/cybersource_rest_client/models/payments_products_payer_authentication_configuration_information.rb', line 185

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end