Class: Stripe::V2::Billing::BillSettingService::UpdateParams::Invoice

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/billing/bill_setting_service.rb

Defined Under Namespace

Classes: TimeUntilDue

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(time_until_due: nil) ⇒ Invoice

Returns a new instance of Invoice.



130
131
132
# File 'lib/stripe/services/v2/billing/bill_setting_service.rb', line 130

def initialize(time_until_due: nil)
  @time_until_due = time_until_due
end

Instance Attribute Details

#time_until_dueObject

The amount of time until the invoice will be overdue for payment.



128
129
130
# File 'lib/stripe/services/v2/billing/bill_setting_service.rb', line 128

def time_until_due
  @time_until_due
end