Skip to content

Commit b6bbe57

Browse files
authored
Merge pull request #737 from recurly/v3-v2021-02-25-20179158430
Generated Latest Changes for v2021-02-25
2 parents a195bc9 + 34275f0 commit b6bbe57

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

openapi/api.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23606,6 +23606,13 @@ components:
2360623606
subscription.
2360723607
items:
2360823608
"$ref": "#/components/schemas/SubscriptionRampIntervalResponse"
23609+
next_bill_date:
23610+
type: string
23611+
format: date-time
23612+
title: Next bill date
23613+
description: If present, this sets the date the subscription's next billing
23614+
period will start (`current_period_ends_at`). When combined with proration_settings,
23615+
proration calculation should occur, only supported when timeframe is now.
2360923616
SubscriptionChangeBillingInfo:
2361023617
type: object
2361123618
description: Accept nested attributes for three_d_secure_action_result_token_id
@@ -23766,6 +23773,13 @@ components:
2376623773
"$ref": "#/components/schemas/SubscriptionRampInterval"
2376723774
proration_settings:
2376823775
"$ref": "#/components/schemas/ProrationSettings"
23776+
next_bill_date:
23777+
type: string
23778+
format: date-time
23779+
title: Next bill date
23780+
description: If present, this sets the date the subscription's next billing
23781+
period will start (`current_period_ends_at`). When combined with proration_settings,
23782+
proration calculation should occur, only supported when timeframe is now.
2376923783
SubscriptionChangeShippingCreate:
2377023784
type: object
2377123785
title: Shipping details that will be changed on a subscription

recurly/resources.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2420,6 +2420,8 @@ class SubscriptionChange(Resource):
24202420
The ID of the Subscription Change.
24212421
invoice_collection : InvoiceCollection
24222422
Invoice Collection
2423+
next_bill_date : datetime
2424+
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.
24232425
object : str
24242426
Object type
24252427
plan : PlanMini
@@ -2453,6 +2455,7 @@ class SubscriptionChange(Resource):
24532455
"deleted_at": datetime,
24542456
"id": str,
24552457
"invoice_collection": "InvoiceCollection",
2458+
"next_bill_date": datetime,
24562459
"object": str,
24572460
"plan": "PlanMini",
24582461
"quantity": int,

0 commit comments

Comments
 (0)