AI-generated Key Takeaways
-
AuthenticatorTransferCompletionStatus
is an annotation used to indicate the status of an account transfer process. -
It provides two constants:
COMPLETED_SUCCESS
signaling a successful transfer andCOMPLETED_FAILURE
indicating a failed transfer. -
COMPLETED_SUCCESS
should be used by the importing side, whileCOMPLETED_FAILURE
can be used by both importing and exporting sides. -
This status information helps the API understand the nature of the request and respond accordingly.
Status for account transfer. This tells the API about the nature of the request. Responses are dependent on the type provided.
Constant Summary
int | COMPLETED_FAILURE | Notifies to setup that the account transfer has failed. |
int | COMPLETED_SUCCESS | Notifies to setup that the account transfer was successful. |
Inherited Method Summary
Constants
public static final int COMPLETED_FAILURE
Notifies to setup that the account transfer has failed. This can be called from importing or exporting side.
public static final int COMPLETED_SUCCESS
Notifies to setup that the account transfer was successful. This should only be called on the importing side (aka target).