Skip to content

Commit

Permalink
Make EndingOn nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
rlew421 committed Jul 17, 2023
1 parent 0d0b82d commit 4ab8c94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Library/SubscriptionRampInterval.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public class SubscriptionRampInterval : RecurlyEntity
/// <summary>Represents the price for the ramp interval.</summary>
public int UnitAmountInCents { get; set; }

/// <summary>Represents the price for the ramp interval.</summary>
/// <summary>Represents the date on which the ramp interval starts.</summary>
public DateTime StartingOn { get; set; }

/// <summary>Represents the price for the ramp interval.</summary>
public DateTime EndingOn { get; set; }
/// <summary>Represents the date on which the ramp interval ends.</summary>
public DateTime? EndingOn { get; set; }

/// <summary>A readonly element that represents how many billing cycles are left in a ramp interval.</summary>
public int? RemainingBillingCycles { get { return _remainingBillingCycles; } }
Expand Down

0 comments on commit 4ab8c94

Please sign in to comment.