Class: Io::Flow::V0::Models::DutiesTaxesPaidSurchargeRatecardFee
- Inherits:
-
RatecardFee
- Object
- RatecardFee
- Io::Flow::V0::Models::DutiesTaxesPaidSurchargeRatecardFee
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#ends_at ⇒ Object
readonly
Returns the value of attribute ends_at.
-
#starts_at ⇒ Object
readonly
Returns the value of attribute starts_at.
Attributes inherited from RatecardFee
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DutiesTaxesPaidSurchargeRatecardFee
constructor
A new instance of DutiesTaxesPaidSurchargeRatecardFee.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from RatecardFee
Constructor Details
#initialize(incoming = {}) ⇒ DutiesTaxesPaidSurchargeRatecardFee
Returns a new instance of DutiesTaxesPaidSurchargeRatecardFee.
40324 40325 40326 40327 40328 40329 40330 40331 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40324 def initialize(incoming={}) super(:discriminator => RatecardFee::Types::DUTIES_TAXES_PAID_SURCHARGE_RATECARD_FEE) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:amount], 'DutiesTaxesPaidSurchargeRatecardFee') @amount = (x = opts.delete(:amount); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x)) @starts_at = (x = opts.delete(:starts_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('starts_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) @ends_at = (x = opts.delete(:ends_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('ends_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
40322 40323 40324 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40322 def amount @amount end |
#ends_at ⇒ Object (readonly)
Returns the value of attribute ends_at.
40322 40323 40324 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40322 def ends_at @ends_at end |
#starts_at ⇒ Object (readonly)
Returns the value of attribute starts_at.
40322 40323 40324 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40322 def starts_at @starts_at end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
40337 40338 40339 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40337 def copy(incoming={}) DutiesTaxesPaidSurchargeRatecardFee.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
40341 40342 40343 40344 40345 40346 40347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40341 def subtype_to_hash { :amount => amount.to_hash, :starts_at => starts_at, :ends_at => ends_at } end |
#to_json ⇒ Object
40333 40334 40335 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40333 def to_json JSON.dump(to_hash) end |