PaymentsSDKError
type PaymentsSDKError = { code: PaymentsSDKErrorCode | PayWithCryptoErrorCode; error: Error;};
An enum representing the error encountered. The value is a human-readable, English message describing the error.
type code = PaymentsSDKErrorCode | PayWithCryptoErrorCode;
type error = Error;