Skip to content

Commit

Permalink
Make internal callback package private
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahkoop committed Dec 14, 2023
1 parent 1f5ad10 commit c6f08f1
Showing 1 changed file with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,8 @@

import androidx.annotation.Nullable;

/**
* Callback for receiving result of
* {@link SEPADirectDebitClient#tokenize(SEPADirectDebitPaymentAuthResult, SEPADirectDebitInternalTokenizeCallback)}.
*/
public interface SEPADirectDebitInternalTokenizeCallback {

/**
* @param sepaDirectDebitNonce {@link SEPADirectDebitNonce}
* @param error an exception that occurred while processing a PayPal result
*/
interface SEPADirectDebitInternalTokenizeCallback {

void onResult(@Nullable SEPADirectDebitNonce sepaDirectDebitNonce, @Nullable Exception error);
}

0 comments on commit c6f08f1

Please sign in to comment.