@@ -46,19 +46,20 @@ public class Subscription : StripeEntity<Subscription>, IHasId, IHasMetadata, IH
46
46
public DateTime ? CancelAt { get ; set ; }
47
47
48
48
/// <summary>
49
- /// If the subscription has been canceled with the <c>AtPeriodEnd</c> flag
50
- /// set to true, <c>CancelAtPeriodEnd</c> on the subscription will be true.
51
- /// You can use this attribute to determine whether a subscription that
52
- /// has a status of active is scheduled to be canceled at the end of
53
- /// the current period.
49
+ /// If the subscription has been canceled with the
50
+ /// <see cref="AtPeriodEnd" /> flag set to true,
51
+ /// <see cref="CancelAtPeriodEnd" /> on the
52
+ /// subscription will be true. You can use this attribute to determine
53
+ /// whether a subscription that has a status of active is scheduled to
54
+ /// be canceled at the end of the current period.
54
55
/// </summary>
55
56
[ JsonProperty ( "cancel_at_period_end" ) ]
56
57
public bool CancelAtPeriodEnd { get ; set ; }
57
58
58
59
/// <summary>
59
60
/// If the subscription has been canceled, the date of that
60
61
/// cancellation. If the subscription was canceled with
61
- /// <c> CancelAtPeriodEnd</c >, <c> CanceledAt</c > will still reflect the
62
+ /// <see cref=" CancelAtPeriodEnd" / >, <see cref=" CanceledAt" / > will still reflect the
62
63
/// date of the initial cancellation request, not the end of the
63
64
/// subscription period when the subscription is automatically moved to
64
65
/// a canceled state.
@@ -298,7 +299,7 @@ public SetupIntent PendingSetupIntent
298
299
299
300
/// <summary>
300
301
/// If specified, deferred upgrade changes that will be applied to the
301
- /// subscription once the latest_invoice has been paid.
302
+ /// subscription once the <see cref="LatestInvoice" /> has been paid.
302
303
/// </summary>
303
304
[ JsonProperty ( "pending_update" ) ]
304
305
public SubscriptionPendingUpdate PendingUpdate { get ; set ; }
0 commit comments