Class: Io::Flow::V0::Models::PaymentMethodSummaryIdeal
- Inherits:
-
PaymentMethodSummary
- Object
- PaymentMethodSummary
- Io::Flow::V0::Models::PaymentMethodSummaryIdeal
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#issuer ⇒ Object
readonly
Returns the value of attribute issuer.
-
#merchant_of_record ⇒ Object
readonly
Returns the value of attribute merchant_of_record.
Attributes inherited from PaymentMethodSummary
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PaymentMethodSummaryIdeal
constructor
A new instance of PaymentMethodSummaryIdeal.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from PaymentMethodSummary
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
#issuer ⇒ Object (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_record ⇒ Object (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_hash ⇒ Object
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_json ⇒ Object
51345 51346 51347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51345 def to_json JSON.dump(to_hash) end |