Try your search with a different keyword or use * as a wildcard.
namespace PayPalCheckoutSdk.Orders;
///
/// Represents the type of landing page to show on the PayPal site for customer checkout
///
public enum LandingPageType
{
///
/// When the customer clicks PayPal Checkout, the customer is redirected to a page to log in to PayPal and approve the payment.
///
Login,
///
/// When the customer clicks PayPal Checkout, the customer is redirected to a page to enter credit or debit card and other relevant billing information required to complete the purchase.
///
Billing,
///
/// When the customer clicks PayPal Checkout, the customer is redirected to either a page to log in to PayPal and approve the payment or to a page to enter credit or debit card and other relevant billing information required to complete the purchase, depending on their previous interaction with PayPal.
///
No_preference
}