Skip to content

Commit

Permalink
Add missing docs'
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahkoop committed Oct 24, 2023
1 parent cb1978e commit c2c2f7f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
package com.braintreepayments.api;

import android.content.Context;

/**
* Result received from the local payment web flow through
* {@link LocalPaymentBrowserSwitchResultCallback}. This result should be passed to
* {@link LocalPaymentClient#onBrowserSwitchResult(Context, LocalPaymentBrowserSwitchResult, LocalPaymentBrowserSwitchResultCallback)}
* to complete the local payment flow.
*/
public class LocalPaymentBrowserSwitchResult {

private BrowserSwitchResult browserSwitchResult;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void launch(@NonNull FragmentActivity activity,
* This method will deliver a {@link LocalPaymentBrowserSwitchResult} to the
* {@link LocalPaymentLauncherCallback} used to instantiate this class. The
* {@link LocalPaymentBrowserSwitchResult} should be passed to
* {@link LocalPaymentLauncher#launch(FragmentActivity, LocalPaymentResult)}
* {@link LocalPaymentClient#onBrowserSwitchResult(Context, LocalPaymentBrowserSwitchResult, LocalPaymentBrowserSwitchResultCallback)}
*
* @param context the context used to check for pending results
* @param intent the intent to return to your application containing a deep link result from
Expand Down

0 comments on commit c2c2f7f

Please sign in to comment.