Class: Ingenico::Connect::SDK::Domain::Payout::FindPayoutsResponse
- Inherits:
-
Ingenico::Connect::SDK::DataObject
- Object
- Ingenico::Connect::SDK::DataObject
- Ingenico::Connect::SDK::Domain::Payout::FindPayoutsResponse
- Defined in:
- lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The current value of limit.
-
#offset ⇒ Integer
The current value of offset.
-
#payouts ⇒ Array<Ingenico::Connect::SDK::Domain::Payout::PayoutResult>
The current value of payouts.
-
#total_count ⇒ Integer
The current value of total_count.
Instance Method Summary collapse
Methods inherited from Ingenico::Connect::SDK::DataObject
Instance Attribute Details
#limit ⇒ Integer
Returns the current value of limit.
16 17 18 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 16 def limit @limit end |
#offset ⇒ Integer
Returns the current value of offset.
16 17 18 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 16 def offset @offset end |
#payouts ⇒ Array<Ingenico::Connect::SDK::Domain::Payout::PayoutResult>
Returns the current value of payouts.
16 17 18 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 16 def payouts @payouts end |
#total_count ⇒ Integer
Returns the current value of total_count.
16 17 18 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 16 def total_count @total_count end |
Instance Method Details
#from_hash(hash) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 36 def from_hash(hash) super if hash.has_key? 'limit' @limit = hash['limit'] end if hash.has_key? 'offset' @offset = hash['offset'] end if hash.has_key? 'payouts' raise TypeError, "value '%s' is not an Array" % [hash['payouts']] unless hash['payouts'].is_a? Array @payouts = [] hash['payouts'].each do |e| @payouts << Ingenico::Connect::SDK::Domain::Payout::PayoutResult.new_from_hash(e) end end if hash.has_key? 'totalCount' @total_count = hash['totalCount'] end end |
#to_h ⇒ Hash
27 28 29 30 31 32 33 34 |
# File 'lib/ingenico/connect/sdk/domain/payout/find_payouts_response.rb', line 27 def to_h hash = super hash['limit'] = @limit unless @limit.nil? hash['offset'] = @offset unless @offset.nil? hash['payouts'] = @payouts.collect{|val| val.to_h} unless @payouts.nil? hash['totalCount'] = @total_count unless @total_count.nil? hash end |