Skip to content

Commit a636aa3

Browse files
authored
Merge pull request #747 from recurly/v3-v2021-02-25-27643113361
Generated Latest Changes for v2021-02-25
2 parents 8b86127 + f5243f4 commit a636aa3

2 files changed

Lines changed: 21 additions & 5 deletions

File tree

openapi/api.yaml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,28 +193,27 @@ x-tagGroups:
193193
- account_acquisition
194194
- billing_info
195195
- billing_infos
196+
- coupon_redemption
196197
- subscription
197198
- subscription_change
198-
- shipping_address
199-
- purchase
200199
- usage
201-
- automated_exports
202-
- gift_cards
200+
- shipping_address
203201
- name: Invoices and Payments
204202
tags:
203+
- purchase
205204
- invoice
206205
- line_item
207206
- credit_payment
208207
- transaction
209208
- revenue_recovery
209+
- gift_cards
210210
- name: Products and Promotions
211211
tags:
212212
- item
213213
- plan
214214
- add-on
215215
- measured_unit
216216
- coupon
217-
- coupon_redemption
218217
- unique_coupon_code
219218
- price_segment
220219
- name: Configuration
@@ -224,6 +223,7 @@ x-tagGroups:
224223
- shipping_method
225224
- dunning_campaigns
226225
- business_entities
226+
- automated_exports
227227
- general_ledger_account
228228
- performance_obligations
229229
- name: App Management
@@ -23711,6 +23711,12 @@ components:
2371123711
title: Remaining pause cycles
2371223712
description: Null unless subscription is paused or will pause at the end
2371323713
of the current billing period.
23714+
resume_at:
23715+
type: string
23716+
format: date-time
23717+
title: Resume at
23718+
description: The date the subscription billing resumes following a pause.
23719+
Null unless the subscription is paused or scheduled to be paused.
2371423720
currency:
2371523721
type: string
2371623722
title: Currency
@@ -25192,6 +25198,10 @@ components:
2519225198
title: Currency
2519325199
description: 3-letter ISO 4217 currency code.
2519425200
maxLength: 3
25201+
description:
25202+
type: string
25203+
title: Description
25204+
description: The description that gets sent to the gateway.
2519525205
amount:
2519625206
type: number
2519725207
format: float

recurly/resources.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -784,6 +784,8 @@ class Transaction(Resource):
784784
Language code for the message
785785
cvv_check : str
786786
When processed, result from checking the CVV/CVC value on the transaction.
787+
description : str
788+
The description that gets sent to the gateway.
787789
fraud_info : TransactionFraudInfo
788790
Fraud information
789791
gateway_approval_code : str
@@ -876,6 +878,7 @@ class Transaction(Resource):
876878
"customer_message": str,
877879
"customer_message_locale": str,
878880
"cvv_check": str,
881+
"description": str,
879882
"fraud_info": "TransactionFraudInfo",
880883
"gateway_approval_code": str,
881884
"gateway_message": str,
@@ -2331,6 +2334,8 @@ class Subscription(Resource):
23312334
Null unless subscription is paused or will pause at the end of the current billing period.
23322335
renewal_billing_cycles : int
23332336
If `auto_renew=true`, when a term completes, `total_billing_cycles` takes this value as the length of subsequent terms. Defaults to the plan's `total_billing_cycles`.
2337+
resume_at : datetime
2338+
The date the subscription billing resumes following a pause. Null unless the subscription is paused or scheduled to be paused.
23342339
revenue_schedule_type : str
23352340
Revenue schedule type
23362341
shipping : SubscriptionShipping
@@ -2406,6 +2411,7 @@ class Subscription(Resource):
24062411
"remaining_billing_cycles": int,
24072412
"remaining_pause_cycles": int,
24082413
"renewal_billing_cycles": int,
2414+
"resume_at": datetime,
24092415
"revenue_schedule_type": str,
24102416
"shipping": "SubscriptionShipping",
24112417
"started_with_gift": bool,

0 commit comments

Comments
 (0)