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
Allows users to override the collect at behavior.
-
#effective_at ⇒ Object
When the modify action will take 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
Constructor Details
#initialize(collect_at: nil, effective_at: nil, pricing_plan_subscription_details: nil, type: nil) ⇒ Modify
Returns a new instance of Modify.
236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 236 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
Allows users to override the collect at behavior.
228 229 230 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 228 def collect_at @collect_at end |
#effective_at ⇒ Object
When the modify action will take effect. If not specified, the default behavior is on_reserve.
230 231 232 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 230 def effective_at @effective_at end |
#pricing_plan_subscription_details ⇒ Object
Details for modifying a pricing plan subscription.
232 233 234 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 232 def pricing_plan_subscription_details @pricing_plan_subscription_details end |
#type ⇒ Object
Type of the action details.
234 235 236 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 234 def type @type end |