Class: Ingenico::Connect::SDK::Domain::Hostedcheckout::Frequency
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Hostedcheckout::Frequency
- Defined in:
- lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb
Instance Attribute Summary collapse
-
#interval ⇒ String
The current value of interval.
-
#interval_frequency ⇒ Integer
The current value of interval_frequency.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#interval ⇒ String
Returns the current value of interval.
13 14 15 |
# File 'lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb', line 13 def interval @interval end |
#interval_frequency ⇒ Integer
Returns the current value of interval_frequency.
13 14 15 |
# File 'lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb', line 13 def interval_frequency @interval_frequency end |
Instance Method Details
#from_hash(hash) ⇒ Object
27 28 29 30 31 32 33 34 35 |
# File 'lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb', line 27 def from_hash(hash) super if hash.has_key? 'interval' @interval = hash['interval'] end if hash.has_key? 'intervalFrequency' @interval_frequency = hash['intervalFrequency'] end end |
#to_h ⇒ Hash
20 21 22 23 24 25 |
# File 'lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb', line 20 def to_h hash = super hash['interval'] = @interval unless @interval.nil? hash['intervalFrequency'] = @interval_frequency unless @interval_frequency.nil? hash end |