getCustomerSignatureStatus method
Stand der Signatur eines Betriebs samt aller Antraege und des FON-Zugangs.
Implementation
Future<SignaturStand> getCustomerSignatureStatus(String customerId) async {
final id = _pflicht(customerId, 'getCustomerSignatureStatus', 'customerId');
final d = await _t.rufen(Aufrufe.getCustomerSignatureStatus, params: <String, dynamic>{'customerId': id});
return SignaturStand.aus(d);
}