1
0
Files
PayPal-PHP-Server-SDK/doc/models/mobile-web-context.md
Patrick Powers 1fc2cf1e07 2.0.0 Release (#58)
* Automated commit message

* Automated commit message

* add changelog

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
2025-11-13 16:32:53 -06:00

1.2 KiB

Mobile Web Context

Buyer's mobile web browser context to app switch to the PayPal consumer app.

Structure

MobileWebContext

Fields

Name Type Tags Description Getter Setter
returnFlow ?string(MobileReturnFlow) Optional Merchant preference on how the buyer can navigate back to merchant website post approving the transaction on the PayPal App.

Default: MobileReturnFlow::AUTO

Constraints: Minimum Length: 1, Maximum Length: 6, Pattern: ^[A-Z_]+$
getReturnFlow(): ?string setReturnFlow(?string returnFlow): void
buyerUserAgent ?string Optional User agent from the request originating from the buyer's device. This will be used to identify the buyer's operating system and browser versions. NOTE: Merchants must not alter or modify the buyer's device user agent.

Constraints: Minimum Length: 1, Maximum Length: 512, Pattern: ^.*$
getBuyerUserAgent(): ?string setBuyerUserAgent(?string buyerUserAgent): void

Example (as JSON)

{
  "return_flow": "AUTO",
  "buyer_user_agent": "buyer_user_agent8"
}