Class: Ingenico::Connect::SDK::Merchant::Payouts::FindPayoutsParams

Inherits:
ParamRequest
  • Object
show all
Defined in:
lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb

Overview

Query parameters for Find payouts

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#limitInteger

Returns the current value of limit.

Returns:

  • (Integer)

    the current value of limit



17
18
19
# File 'lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb', line 17

def limit
  @limit
end

#merchant_order_idInteger

Returns the current value of merchant_order_id.

Returns:

  • (Integer)

    the current value of merchant_order_id



17
18
19
# File 'lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb', line 17

def merchant_order_id
  @merchant_order_id
end

#merchant_referenceString

Returns the current value of merchant_reference.

Returns:

  • (String)

    the current value of merchant_reference



17
18
19
# File 'lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb', line 17

def merchant_reference
  @merchant_reference
end

#offsetInteger

Returns the current value of offset.

Returns:

  • (Integer)

    the current value of offset



17
18
19
# File 'lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb', line 17

def offset
  @offset
end

Instance Method Details

#to_request_parametersArray<Ingenico::Connect::SDK::RequestParam>

Returns representing the attributes of this class.

Returns:



28
29
30
31
32
33
34
35
# File 'lib/ingenico/connect/sdk/merchant/payouts/find_payouts_params.rb', line 28

def to_request_parameters
  result = []
  result << RequestParam.new('merchantReference', @merchant_reference) unless @merchant_reference.nil?
  result << RequestParam.new('merchantOrderId', @merchant_order_id.to_s) unless @merchant_order_id.nil?
  result << RequestParam.new('offset', @offset.to_s) unless @offset.nil?
  result << RequestParam.new('limit', @limit.to_s) unless @limit.nil?
  result
end