## Package: dw.extensions.payments
# Class SalesforcePaymentsMgr
## Inheritance Hierarchy
- Object
- dw.extensions.payments.SalesforcePaymentsMgr
## Description
Contains functionality for use with Salesforce Payments. See Salesforce Payments documentation for how to gain access and configure it for use on your sites.
## Constants
### CANCELLATION_REASON_ABANDONED
**Type:** String = "abandoned"
Cancellation reason indicating customer abandoned payment.
### CANCELLATION_REASON_DUPLICATE
**Type:** String = "duplicate"
Cancellation reason indicating payment intent was a duplicate.
### CANCELLATION_REASON_FRAUDULENT
**Type:** String = "fraudulent"
Cancellation reason indicating payment was fraudulent.
### CANCELLATION_REASON_REQUESTED_BY_CUSTOMER
**Type:** String = "requested_by_customer"
Cancellation reason indicating customer action or request.
### REFUND_REASON_DUPLICATE
**Type:** String = "duplicate"
Refund reason indicating payment intent was a duplicate.
### REFUND_REASON_FRAUDULENT
**Type:** String = "fraudulent"
Refund reason indicating payment was fraudulent.
### REFUND_REASON_REQUESTED_BY_CUSTOMER
**Type:** String = "requested_by_customer"
Refund reason indicating customer action or request.
## Properties
### paymentsSiteConfig
**Type:** SalesforcePaymentsSiteConfiguration (Read Only)
A payments site configuration object for the current site.
## Constructor Summary
## Method Summary
### attachPaymentMethod
**Signature:** `static attachPaymentMethod(paymentMethod : SalesforcePaymentMethod, customer : Customer) : void`
Attaches the given payment method to the given customer.
### authorizePayPalOrder
**Signature:** `static authorizePayPalOrder(paypalOrder : SalesforcePayPalOrder) : Status`
Authorizes the given PayPal order.
### cancelPaymentIntent
**Signature:** `static cancelPaymentIntent(paymentIntent : SalesforcePaymentIntent, paymentIntentProperties : Object) : Status`
Cancels the given payment intent.
### captureAdyenPayment
**Signature:** `static captureAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, amount : Money, transactionProperties : Object) : Status`
Captures funds for the given order payment instrument.
### capturePaymentIntent
**Signature:** `static capturePaymentIntent(paymentIntent : SalesforcePaymentIntent, amount : Money) : Status`
Captures funds for the given payment intent.
### capturePayPalOrder
**Signature:** `static capturePayPalOrder(paypalOrder : SalesforcePayPalOrder) : Status`
Captures funds for the given PayPal order.
### confirmPaymentIntent
**Signature:** `static confirmPaymentIntent(order : Order, paymentMethod : SalesforcePaymentMethod, paymentIntentProperties : Object) : Status`
Confirms a new payment intent using the given payment method, and associates it with the given order.
### createAdyenPaymentIntent
**Signature:** `static createAdyenPaymentIntent(order : Order, shipment : Shipment, zoneId : String, amount : Money, customerRequired : boolean, paymentData : Object, paymentIntentProperties : Object) : Status`
Creates an Adyen payment intent using the given information, and associates it with the given order.
### createPaymentIntent
**Signature:** `static createPaymentIntent(basket : Basket, shipment : Shipment, zoneId : String, amount : Money, stripeCustomerRequired : boolean, paymentIntentProperties : Object) : Status`
Creates a payment intent using the given information, and associates it with the given basket.
### createPayPalOrder
**Signature:** `static createPayPalOrder(basket : Basket, shipment : Shipment, zoneId : String, amount : Money, paypalOrderProperties : Object) : Status`
Creates a PayPal order using the given information, and associates it with the given basket.
### detachPaymentMethod
**Signature:** `static detachPaymentMethod(paymentMethod : SalesforcePaymentMethod) : void`
Detaches the given payment method from its associated customer.
### getAdyenSavedPaymentMethods
**Signature:** `static getAdyenSavedPaymentMethods(customer : Customer) : Collection`
Returns a collection containing the Adyen payment methods saved to be presented to the given customer for reuse in checkouts.
### getAttachedPaymentMethods
**Signature:** `static getAttachedPaymentMethods(customer : Customer) : Collection`
Returns a collection containing the payment methods attached to the given customer.
### getOffSessionPaymentMethods
**Signature:** `static getOffSessionPaymentMethods(customer : Customer) : Collection`
Returns a collection containing the payment methods for the given customer set up for future off session reuse.
### getPaymentDetails
**Signature:** `static getPaymentDetails(paymentInstrument : OrderPaymentInstrument) : SalesforcePaymentDetails`
Returns the details to the Salesforce Payments payment associated with the given payment instrument, or null if the given payment instrument has none.
### getPaymentIntent
**Signature:** `static getPaymentIntent(basket : Basket) : SalesforcePaymentIntent`
Returns the payment intent for the given basket, or null if the given basket has none.
### getPaymentIntent
**Signature:** `static getPaymentIntent(order : Order) : SalesforcePaymentIntent`
Returns the payment intent for the given order, or null if the given order has none.
### getPaymentsSiteConfig
**Signature:** `static getPaymentsSiteConfig() : SalesforcePaymentsSiteConfiguration`
Returns a payments site configuration object for the current site.
### getPaymentsZone
**Signature:** `static getPaymentsZone(zoneId : String) : SalesforcePaymentsZone`
Returns a payments zone object for the passed in payments zone ID.
### getPayPalOrder
**Signature:** `static getPayPalOrder(basket : Basket) : SalesforcePayPalOrder`
Returns the PayPal order for the given basket, or null if the given basket has none.
### getPayPalOrder
**Signature:** `static getPayPalOrder(order : Order) : SalesforcePayPalOrder`
Returns the PayPal order for the given order, or null if the given order has none.
### getSavedPaymentMethods
**Signature:** `static getSavedPaymentMethods(customer : Customer) : Collection`
Returns a collection containing the payment methods saved to be presented to the given customer for reuse in checkouts.
### handleAdyenAdditionalDetails
**Signature:** `static handleAdyenAdditionalDetails(order : Order, zoneId : String, data : Object) : Status`
Handles the given additional Adyen payment details and associates the associated payment with the given order, if applicable.
### onCustomerRegistered
**Signature:** `static onCustomerRegistered(order : Order) : void`
Handles the account registration of the shopper who placed the given order.
### refundAdyenPayment
**Signature:** `static refundAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, amount : Money, transactionProperties : Object) : Status`
Refunds previously captured funds for the given order payment instrument.
### refundPaymentIntent
**Signature:** `static refundPaymentIntent(paymentIntent : SalesforcePaymentIntent, amount : Money, refundProperties : Object) : Status`
Refunds previously captured funds for the given payment intent.
### removeAdyenSavedPaymentMethod
**Signature:** `static removeAdyenSavedPaymentMethod(savedPaymentMethod : SalesforceAdyenSavedPaymentMethod) : void`
Deletes an Adyen saved payment method.
### removeSavedPaymentMethod
**Signature:** `static removeSavedPaymentMethod(paymentMethod : SalesforcePaymentMethod) : void`
Removes the given saved payment method so that it is no longer presented to the given customer for reuse in checkouts.
### resolvePaymentsZone
**Signature:** `static resolvePaymentsZone(paymentsZoneProperties : Object) : SalesforcePaymentsZone`
Resolves and returns the payments zone object for the passed in payments zone properties object.
### reverseAdyenPayment
**Signature:** `static reverseAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, transactionProperties : Object) : Status`
Reverses the authorisation for the given order payment instrument.
### savePaymentMethod
**Signature:** `static savePaymentMethod(customer : Customer, paymentMethod : SalesforcePaymentMethod) : void`
Saves the given payment method to be presented to the given customer for reuse in subsequent checkouts.
### setPaymentDetails
**Signature:** `static setPaymentDetails(paymentInstrument : OrderPaymentInstrument, paymentDetails : SalesforcePaymentDetails) : void`
Sets the details to the Salesforce Payments payment associated with the given payment instrument.
### updatePaymentIntent
**Signature:** `static updatePaymentIntent(paymentIntent : SalesforcePaymentIntent, shipment : Shipment, amount : Money, orderNo : String, paymentIntentProperties : Object) : Status`
Updates the provided information in the given payment intent.
## Method Detail
## Method Details
### attachPaymentMethod
**Signature:** `static attachPaymentMethod(paymentMethod : SalesforcePaymentMethod, customer : Customer) : void`
**Description:** Attaches the given payment method to the given customer. Use this method to attach a payment method of type SalesforcePaymentMethod.TYPE_CARD to a shopper who registers as a customer after placing an order, and has affirmatively elected to save their card as part of the registration process. This method will throw an error if passed incompatible payment method and/or customer objects.
**Deprecated:**
use onCustomerRegistered(Order) and savePaymentMethod(Customer, SalesforcePaymentMethod)
**Parameters:**
- `paymentMethod`: payment method to attach to customer
- `customer`: customer whose payment method to attach
**Throws:**
Exception - if there was an error attaching the payment method to the customer
---
### authorizePayPalOrder
**Signature:** `static authorizePayPalOrder(paypalOrder : SalesforcePayPalOrder) : Status`
**Description:** Authorizes the given PayPal order. The PayPal order must be in a status that supports authorization. See the PayPal documentation for more details.
**Parameters:**
- `paypalOrder`: PayPal order to authorize
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.
**Throws:**
Exception - if there was an error authorizing the PayPal order
---
### cancelPaymentIntent
**Signature:** `static cancelPaymentIntent(paymentIntent : SalesforcePaymentIntent, paymentIntentProperties : Object) : Status`
**Description:** Cancels the given payment intent. If a payment authorization has been made for the payment intent, the authorization is removed. The payment intent must be in a status that supports cancel. See the Stripe documentation for more details. The following Payment Intent property is supported: cancellationReason - optional payment intent cancellation reason
**Parameters:**
- `paymentIntent`: payment intent to capture
- `paymentIntentProperties`: additional properties to pass to the create Payment Intent API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.
**See Also:**
CANCELLATION_REASON_ABANDONED
CANCELLATION_REASON_DUPLICATE
CANCELLATION_REASON_FRAUDULENT
CANCELLATION_REASON_REQUESTED_BY_CUSTOMER
**Throws:**
Exception - if there was an error canceling the payment intent
---
### captureAdyenPayment
**Signature:** `static captureAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, amount : Money, transactionProperties : Object) : Status`
**Description:** Captures funds for the given order payment instrument. The order payment instrument must be in a state that supports capture. The amount must be less than or equal to the amount available to capture. The following Transaction properties are supported: reference - optional reference for the transaction, for example order number
**Parameters:**
- `orderPaymentInstrument`: payment instrument to capture
- `amount`: amount to capture
- `transactionProperties`: properties to pass to the capture Adyen Payment API
**Returns:**
Status 'OK' or 'ERROR'.
**Throws:**
Exception - if there was an error capturing the payment instrument
---
### capturePaymentIntent
**Signature:** `static capturePaymentIntent(paymentIntent : SalesforcePaymentIntent, amount : Money) : Status`
**Description:** Captures funds for the given payment intent. The payment intent must be in a status that supports capture. See the Stripe documentation for more details. If amount is not specified, the default is the full amount available to capture. If specified, the amount must be less than or equal to the amount available to capture.
**Parameters:**
- `paymentIntent`: payment intent to capture
- `amount`: optional amount to capture, defaults to amount available to capture
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'error' contains the Stripe error information, if it is available in the response.
**Throws:**
Exception - if there was an error capturing the payment intent
---
### capturePayPalOrder
**Signature:** `static capturePayPalOrder(paypalOrder : SalesforcePayPalOrder) : Status`
**Description:** Captures funds for the given PayPal order. The PayPal order must be in a status that supports capture. See the PayPal documentation for more details.
**Parameters:**
- `paypalOrder`: PayPal order to capture
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'error' contains the PayPal error information, if it is available in the response.
**Throws:**
Exception - if there was an error capturing the PayPal order
---
### confirmPaymentIntent
**Signature:** `static confirmPaymentIntent(order : Order, paymentMethod : SalesforcePaymentMethod, paymentIntentProperties : Object) : Status`
**Description:** Confirms a new payment intent using the given payment method, and associates it with the given order. The order must be prepared to contain products, shipments, and any other necessary data, and must be calculated to reflect the correct total amounts. If the order is not for the same Customer as the given payment method, an error is thrown. The specified payment method must be set up for off session future use or an error is thrown. iDeal and Bancontact implement reuse differently than other payment methods, but they can't be reused themselves. The following Payment Intent properties are supported: statementDescriptor - optional statement descriptor cardCaptureAutomatic - optional true if the credit card payment should be automatically captured at the time of the sale, or false if the credit card payment should be captured later If cardCaptureAutomatic is provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used. If statementDescriptor is provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply.
**Parameters:**
- `order`: order to pay using Salesforce Payments
- `paymentMethod`: payment method to use to pay
- `paymentIntentProperties`: additional properties to pass to the create Payment Intent API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.
**Throws:**
Exception - if the parameter validation failed or there's an error confirming the payment intent
---
### createAdyenPaymentIntent
**Signature:** `static createAdyenPaymentIntent(order : Order, shipment : Shipment, zoneId : String, amount : Money, customerRequired : boolean, paymentData : Object, paymentIntentProperties : Object) : Status`
**Description:** Creates an Adyen payment intent using the given information, and associates it with the given order. The following Payment Intent properties are supported: type - required payment method type, such as SalesforcePaymentMethod.TYPE_CARD cardCaptureAutomatic - optional true if the credit card payment should be automatically captured at the time of the sale, or false if the credit card payment should be captured later storePaymentMethod - optional true if the payment method should be stored for future usage, or false if not If cardCaptureAutomatic is provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used.
**Parameters:**
- `order`: order to checkout and pay using Salesforce Payments
- `shipment`: shipment to use for shipping information in the payment intent
- `zoneId`: id of the payment zone
- `amount`: payment amount
- `customerRequired`: true if an Adyen shopper reference must be associated with the transaction and needs to be created if it does not already exist for the given ecom customer or false a shopper reference does not have to be associated with the transaction. A customer is required if storing a payment method for future usage or using an existing stored payment method.
- `paymentData`: Adyen specific payment data passed directly from the client as-is
- `paymentIntentProperties`: properties to pass to the create Payment Intent API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Adyen response. Status detail 'error' contains the Adyen error information, if it is available in the response.
---
### createPaymentIntent
**Signature:** `static createPaymentIntent(basket : Basket, shipment : Shipment, zoneId : String, amount : Money, stripeCustomerRequired : boolean, paymentIntentProperties : Object) : Status`
**Description:** Creates a payment intent using the given information, and associates it with the given basket. The following Payment Intent properties are supported: type - required payment method type, such as SalesforcePaymentMethod.TYPE_CARD statementDescriptor - optional statement descriptor cardCaptureAutomatic - optional true if the credit card payment should be automatically captured at the time of the sale, or false if the credit card payment should be captured later setupFutureUsage - optional future usage setup value, such as SalesforcePaymentIntent.SETUP_FUTURE_USAGE_ON_SESSION The stripeCustomerRequired must be set to true if the payment will be set up for future usage, whether on session or off session. If true then if a Stripe Customer is associated with the shopper then it will be used, and otherwise a new Stripe Customer will be created. The new Stripe Customer will be associated with the shopper if logged into a registered customer account for the site. If cardCaptureAutomatic is provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used. If statementDescriptor is provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply. If setupFutureUsage is provided it will be used to prepare the payment to be set up for future usage at confirmation time. When set, this future usage setup value must match the value used at confirmation time.
**Parameters:**
- `basket`: basket to checkout and pay using Salesforce Payments
- `shipment`: shipment to use for shipping information in the payment intent
- `zoneId`: id of the payment zone
- `amount`: payment amount
- `stripeCustomerRequired`: true if a Stripe Customer must be associated with the payment intent, and would be created if it doesn't already exist, or false if a Stripe Customer does not have to be associated with the payment intent
- `paymentIntentProperties`: properties to pass to the create Payment Intent API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.
---
### createPayPalOrder
**Signature:** `static createPayPalOrder(basket : Basket, shipment : Shipment, zoneId : String, amount : Money, paypalOrderProperties : Object) : Status`
**Description:** Creates a PayPal order using the given information, and associates it with the given basket. The following PayPal order properties are supported: fundingSource - required funding source, such as SalesforcePayPalOrder.TYPE_PAYPAL intent - optional order capture timing intent, such as SalesforcePayPalOrder.INTENT_AUTHORIZE or SalesforcePayPalOrder.INTENT_CAPTURE shippingPreference - optional shipping preference, such as "GET_FROM_FILE" userAction - optional user action, such as "PAY_NOW" If intent is provided it is used to determine manual or automatic capture, and otherwise the default card capture timing set for the site is used.
**Parameters:**
- `basket`: basket to checkout and pay using Salesforce Payments
- `shipment`: shipment to use for shipping information in the payment intent
- `zoneId`: id of the payment zone
- `amount`: payment amount
- `paypalOrderProperties`: properties to pass to the create PayPal order API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paypalorder' contains the PayPal order, if it is available in the PayPal response. Status detail 'error' contains the PayPal error information, if it is available in the response.
---
### detachPaymentMethod
**Signature:** `static detachPaymentMethod(paymentMethod : SalesforcePaymentMethod) : void`
**Description:** Detaches the given payment method from its associated customer. Once detached the payment method remains associated with payment intents in the payment account, but is no longer saved for use by the customer in future orders.
**Deprecated:**
use removeSavedPaymentMethod(SalesforcePaymentMethod)
**Parameters:**
- `paymentMethod`: payment method to detach from customer
**Throws:**
Exception - if there was an error detaching the payment method from its customer
---
### getAdyenSavedPaymentMethods
**Signature:** `static getAdyenSavedPaymentMethods(customer : Customer) : Collection`
**Description:** Returns a collection containing the Adyen payment methods saved to be presented to the given customer for reuse in checkouts. The collection will be empty if there are no payment methods saved for the customer, or there was an error retrieving the saved payment methods.
**Parameters:**
- `customer`: customer whose saved payment methods to get
**Returns:**
collection of saved payment methods
**Throws:**
Exception - if the given customer is null or undefined, or there is configuration missing that is required to retrieve the saved payment methods
---
### getAttachedPaymentMethods
**Signature:** `static getAttachedPaymentMethods(customer : Customer) : Collection`
**Description:** Returns a collection containing the payment methods attached to the given customer. The collection will be empty if there are no payment methods attached to the customer, or there was an error retrieving the attached payment methods.
**Deprecated:**
use getSavedPaymentMethods(Customer)
**Parameters:**
- `customer`: customer whose payment methods to get
**Returns:**
collection of attached payment methods
**Throws:**
Exception - if the given customer is null or undefined
---
### getOffSessionPaymentMethods
**Signature:** `static getOffSessionPaymentMethods(customer : Customer) : Collection`
**Description:** Returns a collection containing the payment methods for the given customer set up for future off session reuse. The collection will be empty if there are no off session payment methods for the customer, or there was an error retrieving the off session payment methods.
**Parameters:**
- `customer`: customer whose off session payment methods to get
**Returns:**
collection of off session payment methods
**Throws:**
Exception - if the given customer is null or undefined, or there is an error getting the off session payment methods
---
### getPaymentDetails
**Signature:** `static getPaymentDetails(paymentInstrument : OrderPaymentInstrument) : SalesforcePaymentDetails`
**Description:** Returns the details to the Salesforce Payments payment associated with the given payment instrument, or null if the given payment instrument has none.
**Parameters:**
- `paymentInstrument`: payment instrument
**Returns:**
The payment details
**Throws:**
Exception - if paymentInstrument is null
---
### getPaymentIntent
**Signature:** `static getPaymentIntent(basket : Basket) : SalesforcePaymentIntent`
**Description:** Returns the payment intent for the given basket, or null if the given basket has none.
**Parameters:**
- `basket`: basket to checkout and pay using Salesforce Payments
**Returns:**
The payment intent
**Throws:**
Exception - if there was an error retrieving the payment intent for the basket
---
### getPaymentIntent
**Signature:** `static getPaymentIntent(order : Order) : SalesforcePaymentIntent`
**Description:** Returns the payment intent for the given order, or null if the given order has none.
**Parameters:**
- `order`: order paid using Salesforce Payments
**Returns:**
The payment intent
**Throws:**
Exception - if there was an error retrieving the payment intent for the order
---
### getPaymentsSiteConfig
**Signature:** `static getPaymentsSiteConfig() : SalesforcePaymentsSiteConfiguration`
**Description:** Returns a payments site configuration object for the current site.
**Returns:**
a payments site configuration or null if no payments site configuration found
**Throws:**
Exception - if there is no current site
---
### getPaymentsZone
**Signature:** `static getPaymentsZone(zoneId : String) : SalesforcePaymentsZone`
**Description:** Returns a payments zone object for the passed in payments zone ID.
**Parameters:**
- `zoneId`: ID of the payments zone to retrieve and use to checkout and pay using Salesforce Payments
**Returns:**
a payments zone or null if no payments zone with the given ID exists
---
### getPayPalOrder
**Signature:** `static getPayPalOrder(basket : Basket) : SalesforcePayPalOrder`
**Description:** Returns the PayPal order for the given basket, or null if the given basket has none.
**Parameters:**
- `basket`: basket to checkout and pay using Salesforce Payments
**Returns:**
The PayPal order
**Throws:**
Exception - if there was an error retrieving the PayPal order for the basket
---
### getPayPalOrder
**Signature:** `static getPayPalOrder(order : Order) : SalesforcePayPalOrder`
**Description:** Returns the PayPal order for the given order, or null if the given order has none.
**Parameters:**
- `order`: order paid using Salesforce Payments
**Returns:**
The PayPal order
**Throws:**
Exception - if there was an error retrieving the PayPal order for the order
---
### getSavedPaymentMethods
**Signature:** `static getSavedPaymentMethods(customer : Customer) : Collection`
**Description:** Returns a collection containing the payment methods saved to be presented to the given customer for reuse in checkouts. The collection will be empty if there are no payment methods saved for the customer, or there was an error retrieving the saved payment methods.
**Parameters:**
- `customer`: customer whose saved payment methods to get
**Returns:**
collection of saved payment methods
**Throws:**
Exception - if the given customer is null or undefined, or there is configuration missing that is required to retrieve the saved payment methods
---
### handleAdyenAdditionalDetails
**Signature:** `static handleAdyenAdditionalDetails(order : Order, zoneId : String, data : Object) : Status`
**Description:** Handles the given additional Adyen payment details and associates the associated payment with the given order, if applicable. Pass the state data from the Adyen onAdditionalDetails event as-is, without any encoding or other changes to the data or its structure. See the Adyen documentation for more information.
**Parameters:**
- `order`: order to checkout and pay using Salesforce Payments
- `zoneId`: id of the payment zone
- `data`: additional details state data
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'adyenpayment' contains the payment details, if it is available in the Adyen response and the response resultCode is 'Authorised'. Status detail 'error' contains the Adyen error information, if it is available in the response.
---
### onCustomerRegistered
**Signature:** `static onCustomerRegistered(order : Order) : void`
**Description:** Handles the account registration of the shopper who placed the given order. Use this method to ensure the registered customer profile is associated with the order in Salesforce Payments.
**Parameters:**
- `order`: order paid using Salesforce Payments
**Throws:**
Exception - if there was an error attaching the payment method to the customer
---
### refundAdyenPayment
**Signature:** `static refundAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, amount : Money, transactionProperties : Object) : Status`
**Description:** Refunds previously captured funds for the given order payment instrument. The order payment instrument must be in a state that supports refund. The amount must be less than or equal to the amount available to refund. The following Transaction properties are supported: reference - optional reference for the transaction, for example order number
**Parameters:**
- `orderPaymentInstrument`: payment instrument to refund
- `amount`: amount to refund
- `transactionProperties`: properties to pass to the refund Adyen Payment API
**Returns:**
Status 'OK' or 'ERROR'.
**Throws:**
Exception - if there was an error refunding the payment instrument
---
### refundPaymentIntent
**Signature:** `static refundPaymentIntent(paymentIntent : SalesforcePaymentIntent, amount : Money, refundProperties : Object) : Status`
**Description:** Refunds previously captured funds for the given payment intent. The payment intent must be in a state that supports refund. This includes its status as well as any previous refunds. See the Stripe documentation for more details. The following Payment Intent property is supported: reason - optional payment intent refund reason If amount is not specified, the default is the full amount available to refund. If specified, the amount must be less than or equal to the amount available to refund.
**Parameters:**
- `paymentIntent`: payment intent to refund
- `amount`: optional amount to refund, defaults to amount previously captured
- `refundProperties`: additional properties to pass to the refund API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'error' contains the Stripe error information, if it is available in the response.
**See Also:**
REFUND_REASON_DUPLICATE
REFUND_REASON_FRAUDULENT
REFUND_REASON_REQUESTED_BY_CUSTOMER
**Throws:**
Exception - if there was an error refunding the payment intent
---
### removeAdyenSavedPaymentMethod
**Signature:** `static removeAdyenSavedPaymentMethod(savedPaymentMethod : SalesforceAdyenSavedPaymentMethod) : void`
**Description:** Deletes an Adyen saved payment method.
**Parameters:**
- `savedPaymentMethod`: the saved payment method to delete
**Throws:**
Exception - if the saved payment method is null or undefined, or there is configuration missing that is required to delete the saved payment method
---
### removeSavedPaymentMethod
**Signature:** `static removeSavedPaymentMethod(paymentMethod : SalesforcePaymentMethod) : void`
**Description:** Removes the given saved payment method so that it is no longer presented to the given customer for reuse in checkouts. The payment method remains in the payment account, but is no longer saved for use by the customer.
**Parameters:**
- `paymentMethod`: payment method to detach from customer
**Throws:**
Exception - if there was an error removing the saved payment method from its customer
---
### resolvePaymentsZone
**Signature:** `static resolvePaymentsZone(paymentsZoneProperties : Object) : SalesforcePaymentsZone`
**Description:** Resolves and returns the payments zone object for the passed in payments zone properties object. If an empty object is provided, the default payments zone will be returned if it exists. The following payments zone properties are supported: countryCode - optional country code of the shopper, or null if not known currency - optional basket currency, or null if not known
**Parameters:**
- `paymentsZoneProperties`: properties to use to retrieve the payments zone for to use to checkout and pay using Salesforce Payments
**Returns:**
a payments zone
**Throws:**
Exception - if no default payments zone exists
---
### reverseAdyenPayment
**Signature:** `static reverseAdyenPayment(orderPaymentInstrument : OrderPaymentInstrument, transactionProperties : Object) : Status`
**Description:** Reverses the authorisation for the given order payment instrument. The order payment instrument must be in a state that supports reversal. The following Transaction properties are supported: reference - optional reference for the transaction, for example order number
**Parameters:**
- `orderPaymentInstrument`: payment instrument to reverse
- `transactionProperties`: properties to pass to the reverse Adyen Payment API
**Returns:**
Status 'OK' or 'ERROR'.
**Throws:**
Exception - if there was an error reversing the payment instrument
---
### savePaymentMethod
**Signature:** `static savePaymentMethod(customer : Customer, paymentMethod : SalesforcePaymentMethod) : void`
**Description:** Saves the given payment method to be presented to the given customer for reuse in subsequent checkouts. This method will throw an error if passed incompatible payment method and/or customer objects.
**Parameters:**
- `customer`: customer for which to save the payment method
- `paymentMethod`: payment method to save for the customer
**Throws:**
Exception - if there was an error saving the payment method for the customer
---
### setPaymentDetails
**Signature:** `static setPaymentDetails(paymentInstrument : OrderPaymentInstrument, paymentDetails : SalesforcePaymentDetails) : void`
**Description:** Sets the details to the Salesforce Payments payment associated with the given payment instrument.
**Parameters:**
- `paymentInstrument`: payment instrument
- `paymentDetails`: payment details
**See Also:**
SalesforcePaymentMethod.getPaymentDetails(OrderPaymentInstrument)
SalesforcePayPalOrder.getPaymentDetails(OrderPaymentInstrument)
**Throws:**
Exception - if either paymentInstrument or paymentDetails is null
---
### updatePaymentIntent
**Signature:** `static updatePaymentIntent(paymentIntent : SalesforcePaymentIntent, shipment : Shipment, amount : Money, orderNo : String, paymentIntentProperties : Object) : Status`
**Description:** Updates the provided information in the given payment intent. The payment intent must be in a status that supports update. See the Stripe documentation for more details. The following Payment Intent properties are supported: statementDescriptor - optional statement descriptor cardCaptureAutomatic - optional true if the credit card payment should be automatically captured at the time of the sale, or false if the credit card payment should be captured later If cardCaptureAutomatic is provided it is used to determine card capture timing, and otherwise the default card capture timing set for the site is used. If statementDescriptor is provided it is used as the complete description that appears on your customers' statements for the payment, and if not a default statement descriptor is used. If a default statement descriptor is set for the site it is used as the default, and otherwise the default statement descriptor for the account will apply.
**Parameters:**
- `paymentIntent`: payment intent to update
- `shipment`: optional shipment to use to update shipping information in the payment intent
- `amount`: optional new payment amount
- `orderNo`: optional order no of Order to associate with the payment intent in metadata
- `paymentIntentProperties`: optional additional properties to pass to the update Payment Intent API
**Returns:**
Status 'OK' or 'ERROR'. Status detail 'paymentintent' contains the payment intent, if it is available in the Stripe response. Status detail 'error' contains the Stripe error information, if it is available in the response.
**Throws:**
Exception - if the parameter validation failed or there's an error updating the payment intent
---