Class: Stripe::Price::ListParams::Created

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/price.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.



182
183
184
185
186
187
# File 'lib/stripe/resources/price.rb', line 182

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)



174
175
176
# File 'lib/stripe/resources/price.rb', line 174

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



176
177
178
# File 'lib/stripe/resources/price.rb', line 176

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



178
179
180
# File 'lib/stripe/resources/price.rb', line 178

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



180
181
182
# File 'lib/stripe/resources/price.rb', line 180

def lte
  @lte
end