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.



147
148
149
150
151
152
# File 'lib/stripe/resources/price.rb', line 147

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)



136
137
138
# File 'lib/stripe/resources/price.rb', line 136

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



139
140
141
# File 'lib/stripe/resources/price.rb', line 139

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



142
143
144
# File 'lib/stripe/resources/price.rb', line 142

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



145
146
147
# File 'lib/stripe/resources/price.rb', line 145

def lte
  @lte
end