feat: Add cancellation effective date to subscriptions

This commit is contained in:
Faruk AYDIN
2023-04-11 22:45:12 +02:00
parent 4e182b49f9
commit 596be24d92
3 changed files with 37 additions and 11 deletions

View File

@@ -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' },
},
};