Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23606,6 +23606,13 @@ components:
subscription.
items:
"$ref": "#/components/schemas/SubscriptionRampIntervalResponse"
next_bill_date:
type: string
format: date-time
title: Next bill date
description: If present, this sets the date the subscription's next billing
period will start (`current_period_ends_at`). When combined with proration_settings,
proration calculation should occur, only supported when timeframe is now.
SubscriptionChangeBillingInfo:
type: object
description: Accept nested attributes for three_d_secure_action_result_token_id
Expand Down Expand Up @@ -23766,6 +23773,13 @@ components:
"$ref": "#/components/schemas/SubscriptionRampInterval"
proration_settings:
"$ref": "#/components/schemas/ProrationSettings"
next_bill_date:
type: string
format: date-time
title: Next bill date
description: If present, this sets the date the subscription's next billing
period will start (`current_period_ends_at`). When combined with proration_settings,
proration calculation should occur, only supported when timeframe is now.
SubscriptionChangeShippingCreate:
type: object
title: Shipping details that will be changed on a subscription
Expand Down
3 changes: 3 additions & 0 deletions recurly/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -2420,6 +2420,8 @@ class SubscriptionChange(Resource):
The ID of the Subscription Change.
invoice_collection : InvoiceCollection
Invoice Collection
next_bill_date : datetime
If present, this sets the date the subscription's next billing period will start (`current_period_ends_at`). When combined with proration_settings, proration calculation should occur, only supported when timeframe is now.
object : str
Object type
plan : PlanMini
Expand Down Expand Up @@ -2453,6 +2455,7 @@ class SubscriptionChange(Resource):
"deleted_at": datetime,
"id": str,
"invoice_collection": "InvoiceCollection",
"next_bill_date": datetime,
"object": str,
"plan": "PlanMini",
"quantity": int,
Expand Down
Loading