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.



120
121
122
123
124
125
# File 'lib/stripe/resources/price.rb', line 120

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)



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

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



114
115
116
# File 'lib/stripe/resources/price.rb', line 114

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



116
117
118
# File 'lib/stripe/resources/price.rb', line 116

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



118
119
120
# File 'lib/stripe/resources/price.rb', line 118

def lte
  @lte
end