Skip to content

Commit

Permalink
Make StartingOn nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
rlew421 committed Jul 17, 2023
1 parent 4ab8c94 commit 02b7e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/SubscriptionRampInterval.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class SubscriptionRampInterval : RecurlyEntity
public int UnitAmountInCents { get; set; }

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

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

0 comments on commit 02b7e2f

Please sign in to comment.