getInvoiceSetupStatus method

Future<InvoiceSetupStatus> getInvoiceSetupStatus()

Darf dieses Konto ausstellen, und was fehlt noch? Antwortet auch ohne Freigabe und vor der Live-Freischaltung.

Implementation

Future<InvoiceSetupStatus> getInvoiceSetupStatus() async {
  const name = Aufrufe.getInvoiceSetupStatus;
  final daten = await _transport.rufen(name, const {});
  return _lesen(name, () => InvoiceSetupStatus.fromJson(daten));
}