1
0
Files
PayPal-PHP-Server-SDK/doc/models/payment-preferences.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.8 KiB

Payment Preferences

The payment preferences for a subscription.

Structure

PaymentPreferences

Fields

Name Type Tags Description Getter Setter
autoBillOutstanding ?bool Optional Indicates whether to automatically bill the outstanding amount in the next billing cycle.

Default: true
getAutoBillOutstanding(): ?bool setAutoBillOutstanding(?bool autoBillOutstanding): void
setupFee ?Money Optional The currency and amount for a financial transaction, such as a balance or payment due. getSetupFee(): ?Money setSetupFee(?Money setupFee): void
setupFeeFailureAction ?string(SetupFeeFailureAction) Optional The action to take on the subscription if the initial payment for the setup fails.

Default: SetupFeeFailureAction::CANCEL

Constraints: Minimum Length: 1, Maximum Length: 24, Pattern: ^[A-Z_]+$
getSetupFeeFailureAction(): ?string setSetupFeeFailureAction(?string setupFeeFailureAction): void
paymentFailureThreshold ?int Optional The maximum number of payment failures before a subscription is suspended. For example, if payment_failure_threshold is 2, the subscription automatically updates to the SUSPEND state if two consecutive payments fail.

Default: 0

Constraints: >= 0, <= 999
getPaymentFailureThreshold(): ?int setPaymentFailureThreshold(?int paymentFailureThreshold): void

Example (as JSON)

{
  "auto_bill_outstanding": true,
  "setup_fee_failure_action": "CANCEL",
  "payment_failure_threshold": 0,
  "setup_fee": {
    "currency_code": "currency_code8",
    "value": "value4"
  }
}