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.



44
45
46
47
48
49
# File 'lib/stripe/resources/tax_rate.rb', line 44

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)



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

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



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

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



40
41
42
# File 'lib/stripe/resources/tax_rate.rb', line 40

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



42
43
44
# File 'lib/stripe/resources/tax_rate.rb', line 42

def lte
  @lte
end