You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stripe/_quote.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -771,10 +771,10 @@ class Prebilling(StripeObject):
771
771
Set of [key-value pairs](https://docs.stripe.com/api/metadata) that will set metadata on the subscription or subscription schedule when the quote is accepted. If a recurring price is included in `line_items`, this field will be passed to the resulting subscription's `metadata` field. If `subscription_data.effective_date` is used, this field will be passed to the resulting subscription schedule's `phases.metadata` field. Unlike object-level metadata, this field is declarative. Updates will clear prior values.
772
772
"""
773
773
phase_effective_at: Optional[
774
-
Literal["billing_period_start", "line_start"]
774
+
Literal["billing_period_start", "phase_start"]
775
775
]
776
776
"""
777
-
Configures how the quote handles billing for line transitions. Possible values are `line_start` (default) or `billing_period_start`. `line_start` bills based on the current state of the line, ignoring changes scheduled for future lines. `billing_period_start` bills predictively for upcoming line transitions within the current billing cycle, including pricing changes and service period adjustments that will occur before the next invoice.
777
+
Configures how the subscription schedule handles billing for phase transitions when the quote is accepted.
778
778
"""
779
779
prebilling: Optional[Prebilling]
780
780
"""
@@ -1041,10 +1041,10 @@ class LineEndsAt(StripeObject):
1041
1041
Behavior of the subscription schedule and underlying subscription when it ends.
1042
1042
"""
1043
1043
phase_effective_at: Optional[
1044
-
Literal["billing_period_start", "line_start"]
1044
+
Literal["billing_period_start", "phase_start"]
1045
1045
]
1046
1046
"""
1047
-
Configures how the quote handles billing for line transitions. Possible values are `line_start` (default) or `billing_period_start`. `line_start` bills based on the current state of the line, ignoring changes scheduled for future lines. `billing_period_start` bills predictively for upcoming line transitions within the current billing cycle, including pricing changes and service period adjustments that will occur before the next invoice.
1047
+
Configures how the subscription schedule handles billing for phase transitions when the quote is accepted.
0 commit comments