Try your search with a different keyword or use * as a wildcard.
namespace PayPalCheckoutSdk.Orders;
///
/// Represents the type of shipping preference for customer checkout flow
///
public enum ShippingPreferenceType
{
///
/// Use the customer-provided shipping address on the PayPal site.
///
Get_from_file,
///
/// Redact the shipping address from the PayPal site. Recommended for digital goods.
///
No_shipping,
///
/// Use the merchant-provided address. The customer cannot change this address on the PayPal site.
///
Set_provided_address
}