Class: Ingenico::Connect::SDK::Domain::Hostedcheckout::Frequency

Inherits:
Ingenico::Connect::SDK::DataObject show all
Defined in:
lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ingenico::Connect::SDK::DataObject

new_from_hash

Instance Attribute Details

#intervalString

Returns the current value of interval.

Returns:

  • (String)

    the current value of interval



13
14
15
# File 'lib/ingenico/connect/sdk/domain/hostedcheckout/frequency.rb', line 13

def interval
  @interval
end

#interval_frequencyInteger

Returns the current value of interval_frequency.

Returns:

  • (Integer)

    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_hHash

Returns:

  • (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