forked from LiveCarta/PayPal-PHP-Server-SDK
1.8 KiB
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::CANCELConstraints: 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: 0Constraints: >= 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"
}
}