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.



109
110
111
112
113
114
# File 'lib/stripe/resources/price.rb', line 109

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)



101
102
103
# File 'lib/stripe/resources/price.rb', line 101

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



103
104
105
# File 'lib/stripe/resources/price.rb', line 103

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



105
106
107
# File 'lib/stripe/resources/price.rb', line 105

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



107
108
109
# File 'lib/stripe/resources/price.rb', line 107

def lte
  @lte
end