Class: Stripe::TaxRate::ListParams::Created

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/tax_rate.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created

Returns a new instance of Created.



36
37
38
39
40
41
# File 'lib/stripe/resources/tax_rate.rb', line 36

def initialize(gt: nil, gte: nil, lt: nil, lte: nil)
  @gt = gt
  @gte = gte
  @lt = lt
  @lte = lte
end

Instance Attribute Details

#gtObject

Minimum value to filter by (exclusive)



28
29
30
# File 'lib/stripe/resources/tax_rate.rb', line 28

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



30
31
32
# File 'lib/stripe/resources/tax_rate.rb', line 30

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



32
33
34
# File 'lib/stripe/resources/tax_rate.rb', line 32

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



34
35
36
# File 'lib/stripe/resources/tax_rate.rb', line 34

def lte
  @lte
end