class Ingenico::Connect::SDK::Merchant::Services::PrivacypolicyParams

Query parameters for {epayments-api.developer-ingenico.com/s2sapi/v1/en_US/ruby/services/privacypolicy.html Get privacy policy} @attr [String] locale @attr [Integer] payment_product_id

Attributes

locale[RW]
payment_product_id[RW]

Public Instance Methods

to_request_parameters() click to toggle source

@return [Array<Ingenico::Connect::SDK::RequestParam>] representing the attributes of this class

# File lib/ingenico/connect/sdk/merchant/services/privacypolicy_params.rb, line 22
def to_request_parameters
  result = []
  result << RequestParam.new('locale', @locale) unless @locale.nil?
  result << RequestParam.new('paymentProductId', @payment_product_id.to_s) unless @payment_product_id.nil?
  result
end