Class: Stripe::Terminal::ConfigurationUpdateParams::Tipping::Aud

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/terminal/configuration_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil) ⇒ Aud

Returns a new instance of Aud.



97
98
99
100
101
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 97

def initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil)
  @fixed_amounts = fixed_amounts
  @percentages = percentages
  @smart_tip_threshold = smart_tip_threshold
end

Instance Attribute Details

#fixed_amountsObject

Fixed amounts displayed when collecting a tip



91
92
93
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 91

def fixed_amounts
  @fixed_amounts
end

#percentagesObject

Percentages displayed when collecting a tip



93
94
95
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 93

def percentages
  @percentages
end

#smart_tip_thresholdObject

Below this amount, fixed amounts will be displayed; above it, percentages will be displayed



95
96
97
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 95

def smart_tip_threshold
  @smart_tip_threshold
end