Class: Stripe::Forwarding::RequestListParams::Created

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/forwarding/request_list_params.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.



17
18
19
20
21
22
# File 'lib/stripe/params/forwarding/request_list_params.rb', line 17

def initialize(gt: nil, gte: nil, lt: nil, lte: nil)
  @gt = gt
  @gte = gte
  @lt = lt
  @lte = lte
end

Instance Attribute Details

#gtObject

Return results where the ‘created` field is greater than this value.



9
10
11
# File 'lib/stripe/params/forwarding/request_list_params.rb', line 9

def gt
  @gt
end

#gteObject

Return results where the ‘created` field is greater than or equal to this value.



11
12
13
# File 'lib/stripe/params/forwarding/request_list_params.rb', line 11

def gte
  @gte
end

#ltObject

Return results where the ‘created` field is less than this value.



13
14
15
# File 'lib/stripe/params/forwarding/request_list_params.rb', line 13

def lt
  @lt
end

#lteObject

Return results where the ‘created` field is less than or equal to this value.



15
16
17
# File 'lib/stripe/params/forwarding/request_list_params.rb', line 15

def lte
  @lte
end