We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce27156 commit eafba4cCopy full SHA for eafba4c
1 file changed
ground_control_client/lib/src/protocol/client.dart
@@ -544,6 +544,13 @@ class EndpointBilling extends _i1.EndpointRef {
544
caller.callServerEndpoint<void>('billing', 'setDefaultPaymentMethod', {
545
'paymentMethodId': paymentMethodId,
546
});
547
+
548
+ /// Checks if the owner is in good standing.
549
+ ///
550
+ /// Verifies that the owner's billing account is active and has no outstanding
551
+ /// issues that would prevent normal operation of the service.
552
+ _i2.Future<bool> ownerIsInGoodStanding() =>
553
+ caller.callServerEndpoint<bool>('billing', 'ownerIsInGoodStanding', {});
554
}
555
556
/// {@category Endpoint}
0 commit comments