feat: Add cancellation effective date to subscriptions
This commit is contained in:
@@ -14,6 +14,7 @@ class Subscription extends Base {
|
||||
nextBillAmount!: string;
|
||||
nextBillDate!: string;
|
||||
lastBillDate?: string;
|
||||
cancellationEffectiveDate?: string;
|
||||
usageData?: UsageData[];
|
||||
currentUsageData?: UsageData;
|
||||
|
||||
@@ -43,6 +44,7 @@ class Subscription extends Base {
|
||||
nextBillAmount: { type: 'string' },
|
||||
nextBillDate: { type: 'string' },
|
||||
lastBillDate: { type: 'string' },
|
||||
cancellationEffectiveDate: { type: 'string' },
|
||||
},
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user