Class: OnlinePayments::SDK::Merchant::ProductGroups::GetProductGroupsParams

Inherits:
Communication::ParamRequest show all
Defined in:
lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb

Overview

Query parameters for Get product groups (/v2/merchantId/productgroups)

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#amountInteger



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def amount
  @amount
end

#country_codeString



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def country_code
  @country_code
end

#currency_codeString



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def currency_code
  @currency_code
end

#hideArray<String>



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def hide
  @hide
end

#is_recurringtrue/false



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def is_recurring
  @is_recurring
end

#localeObject

Deprecated.

This field has no effect.



19
20
21
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 19

def locale
  @locale
end

Instance Method Details

#add_hide(value) ⇒ Object

Adds the parameter value to the hide Array



37
38
39
40
41
42
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 37

def add_hide(value)
  unless @hide
    @hide = []
  end
  @hide << value
end

#to_request_parametersArray<OnlinePayments::SDK::Communication::RequestParam>



45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/onlinepayments/sdk/merchant/productgroups/get_product_groups_params.rb', line 45

def to_request_parameters
  result = []
  result << RequestParam.new('countryCode', @country_code) unless @country_code.nil?
  result << RequestParam.new('currencyCode', @currency_code) unless @currency_code.nil?
  result << RequestParam.new('locale', @locale) unless @locale.nil?
  result << RequestParam.new('amount', @amount.to_s) unless @amount.nil?
  result << RequestParam.new('isRecurring', @is_recurring.to_s) unless @is_recurring.nil?
  unless @hide.nil?
    @hide.each {|e| result << RequestParam.new('hide', e)}
  end
  result
end