Class: Io::Flow::V0::Models::PaymentMethodSummaryIdeal

Inherits:
PaymentMethodSummary show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from PaymentMethodSummary

#type

Instance Method Summary collapse

Methods inherited from PaymentMethodSummary

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ PaymentMethodSummaryIdeal

Returns a new instance of PaymentMethodSummaryIdeal.



51337
51338
51339
51340
51341
51342
51343
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51337

def initialize(incoming={})
  super(:type => PaymentMethodSummary::Types::PAYMENT_METHOD_SUMMARY_IDEAL)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:merchant_of_record, :issuer], 'PaymentMethodSummaryIdeal')
  @merchant_of_record = (x = opts.delete(:merchant_of_record); x.is_a?(::Io::Flow::V0::Models::MerchantOfRecord) ? x : ::Io::Flow::V0::Models::MerchantOfRecord.apply(x))
  @issuer = HttpClient::Preconditions.assert_class('issuer', opts.delete(:issuer), String)
end

Instance Attribute Details

#issuerObject (readonly)

Returns the value of attribute issuer.



51335
51336
51337
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51335

def issuer
  @issuer
end

#merchant_of_recordObject (readonly)

Returns the value of attribute merchant_of_record.



51335
51336
51337
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51335

def merchant_of_record
  @merchant_of_record
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



51349
51350
51351
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51349

def copy(incoming={})
  PaymentMethodSummaryIdeal.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



51353
51354
51355
51356
51357
51358
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51353

def subtype_to_hash
  {
    :merchant_of_record => merchant_of_record.value,
    :issuer => issuer
  }
end

#to_jsonObject



51345
51346
51347
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51345

def to_json
  JSON.dump(to_hash)
end