@@ -1228,6 +1228,8 @@ class ExternalSubscription(Resource):
12281228 Identifier of the app that generated the external subscription.
12291229 auto_renew : bool
12301230 An indication of whether or not the external subscription will auto-renew at the expiration date.
1231+ canceled_at : datetime
1232+ When the external subscription was canceled in the external platform.
12311233 created_at : datetime
12321234 When the external subscription was created in Recurly.
12331235 expires_at : datetime
@@ -1238,14 +1240,20 @@ class ExternalSubscription(Resource):
12381240 External Product Reference details
12391241 id : str
12401242 System-generated unique identifier for an external subscription ID, e.g. `e28zov4fw0v2`.
1243+ in_grace_period : bool
1244+ An indication of whether or not the external subscription is in a grace period.
12411245 last_purchased : datetime
12421246 When a new billing event occurred on the external subscription in conjunction with a recent billing period, reactivation or upgrade/downgrade.
12431247 object : str
12441248 Object type
12451249 quantity : int
12461250 An indication of the quantity of a subscribed item's quantity.
12471251 state : str
1248- External subscriptions can be active, canceled, expired, or future.
1252+ External subscriptions can be active, canceled, expired, or past_due.
1253+ trial_ends_at : datetime
1254+ When the external subscription trial period ends in the external platform.
1255+ trial_started_at : datetime
1256+ When the external subscription trial period started in the external platform.
12491257 updated_at : datetime
12501258 When the external subscription was updated in Recurly.
12511259 """
@@ -1255,15 +1263,19 @@ class ExternalSubscription(Resource):
12551263 "activated_at" : datetime ,
12561264 "app_identifier" : str ,
12571265 "auto_renew" : bool ,
1266+ "canceled_at" : datetime ,
12581267 "created_at" : datetime ,
12591268 "expires_at" : datetime ,
12601269 "external_id" : str ,
12611270 "external_product_reference" : "ExternalProductReferenceMini" ,
12621271 "id" : str ,
1272+ "in_grace_period" : bool ,
12631273 "last_purchased" : datetime ,
12641274 "object" : str ,
12651275 "quantity" : int ,
12661276 "state" : str ,
1277+ "trial_ends_at" : datetime ,
1278+ "trial_started_at" : datetime ,
12671279 "updated_at" : datetime ,
12681280 }
12691281
0 commit comments