Type Alias LedgerAccountTransferAdminCreateError
LedgerAccountTransferAdminCreateError:
| ServiceError<"INVALID_TRANSFER">
| ServiceError<"ENTITY_NOT_FOUND">
| ServiceError<"ENTITY_INACTIVE">
| ServiceError<"INVALID_LEDGER_ACCOUNT", { ledgerAccountId: string }>
| ServiceError<
"INSUFFICIENT_FUNDS",
{ balance: LedgerAccountTransferAmount },
>
| ErrorReturnedBy<ProductQuoteService["quote"]>
Errors returned by LedgerAccountTransferAdminService.create.
Named and exported rather than written inline, because an inline union cannot reference
typeof this.productQuoteService.quote: private members are emitted without their types, so the union degrades tounknownin the.d.tsand — withskipLibCheckmasking it at the producer — surfaces only asresult.error is of type unknownin consumers.