Class: Stripe::V2::Billing::IntentCreateParams::CadenceData
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentCreateParams::CadenceData
- Defined in:
- lib/stripe/params/v2/billing/intent_create_params.rb
Defined Under Namespace
Classes: BillingCycle, Payer, Settings
Instance Attribute Summary collapse
-
#billing_cycle ⇒ Object
The billing cycle configuration for this Cadence.
-
#payer ⇒ Object
Information about the payer for this Cadence.
-
#settings ⇒ Object
Settings for creating the Cadence.
Instance Method Summary collapse
-
#initialize(billing_cycle: nil, payer: nil, settings: nil) ⇒ CadenceData
constructor
A new instance of CadenceData.
Methods inherited from RequestParams
Constructor Details
#initialize(billing_cycle: nil, payer: nil, settings: nil) ⇒ CadenceData
Returns a new instance of CadenceData.
769 770 771 772 773 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 769 def initialize(billing_cycle: nil, payer: nil, settings: nil) @billing_cycle = billing_cycle @payer = payer @settings = settings end |
Instance Attribute Details
#billing_cycle ⇒ Object
The billing cycle configuration for this Cadence.
763 764 765 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 763 def billing_cycle @billing_cycle end |
#payer ⇒ Object
Information about the payer for this Cadence.
765 766 767 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 765 def payer @payer end |
#settings ⇒ Object
Settings for creating the Cadence.
767 768 769 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 767 def settings @settings end |