Class: Stripe::Reporting::ReportRun::ListParams::Created

Inherits:
Stripe::RequestParams show all
Defined in:
lib/stripe/resources/reporting/report_run.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Stripe::RequestParams

#to_h

Constructor Details

#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created

Returns a new instance of Created.



63
64
65
66
67
68
# File 'lib/stripe/resources/reporting/report_run.rb', line 63

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)



52
53
54
# File 'lib/stripe/resources/reporting/report_run.rb', line 52

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



55
56
57
# File 'lib/stripe/resources/reporting/report_run.rb', line 55

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



58
59
60
# File 'lib/stripe/resources/reporting/report_run.rb', line 58

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



61
62
63
# File 'lib/stripe/resources/reporting/report_run.rb', line 61

def lte
  @lte
end