File tree Expand file tree Collapse file tree
ground_control_client/lib/src/test_tools/builders/billing Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import 'package:ground_control_client/ground_control_client_test_tools.dart';
44class OwnerBuilder {
55 UuidValue ? _id;
66 String _externalBillingId;
7+ String _externalPaymentId;
78 Uri _billingPortalUrl;
89 List <String > _billingEmails;
910 BillingInfo ? _billingInfo;
@@ -13,6 +14,7 @@ class OwnerBuilder {
1314 OwnerBuilder ()
1415 : _id = Uuid ().v4obj (),
1516 _externalBillingId = 'default-external-billing-id' ,
17+ _externalPaymentId = 'default-external-payment-id' ,
1618 _billingPortalUrl = Uri .parse ('https://billing.example.com' ),
1719 _billingEmails = [],
1820 _projects = [],
@@ -74,6 +76,7 @@ class OwnerBuilder {
7476 return Owner (
7577 id: _id,
7678 externalBillingId: _externalBillingId,
79+ externalPaymentId: _externalPaymentId,
7780 billingPortalUrl: _billingPortalUrl,
7881 billingEmails: _billingEmails,
7982 billingInfo: _billingInfo,
You can’t perform that action at this time.
0 commit comments