Class: Stripe::V2::Billing::IntentCreateParams::Action::Modify
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentCreateParams::Action::Modify
- Defined in:
- lib/stripe/params/v2/billing/intent_create_params.rb
Defined Under Namespace
Classes: EffectiveAt, PricingPlanSubscriptionDetails
Instance Attribute Summary collapse
-
#collect_at ⇒ Object
When the invoice is collected.
-
#effective_at ⇒ Object
When the modify action takes effect.
-
#pricing_plan_subscription_details ⇒ Object
Details for modifying a pricing plan subscription.
-
#type ⇒ Object
Type of the action details.
Instance Method Summary collapse
-
#initialize(collect_at: nil, effective_at: nil, pricing_plan_subscription_details: nil, type: nil) ⇒ Modify
constructor
A new instance of Modify.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(collect_at: nil, effective_at: nil, pricing_plan_subscription_details: nil, type: nil) ⇒ Modify
Returns a new instance of Modify.
366 367 368 369 370 371 372 373 374 375 376 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 366 def initialize( collect_at: nil, effective_at: nil, pricing_plan_subscription_details: nil, type: nil ) @collect_at = collect_at @effective_at = effective_at @pricing_plan_subscription_details = pricing_plan_subscription_details @type = type end |
Instance Attribute Details
#collect_at ⇒ Object
When the invoice is collected. If not specified, the default behavior is next_billing_date.
358 359 360 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 358 def collect_at @collect_at end |
#effective_at ⇒ Object
When the modify action takes effect. If not specified, the default behavior is on_reserve.
360 361 362 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 360 def effective_at @effective_at end |
#pricing_plan_subscription_details ⇒ Object
Details for modifying a pricing plan subscription.
362 363 364 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 362 def pricing_plan_subscription_details @pricing_plan_subscription_details end |
#type ⇒ Object
Type of the action details.
364 365 366 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 364 def type @type end |