GetSopPaymentResponseProps
Properties for getting a payment data response.
interface GetSopPaymentResponseProps extends BaseProps {
cartId: string;
entries: PaymentEntry[];
userId: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
cartId | Required | string | Cart identifier: cart code for logged-in user, cart guid for anonymous user, current for the last modified cart. |
entries | Required | PaymentEntry[] | Entry keys required to finish payment. |
userId | Required | string | User identifier or one of the literals: current for currently authenticated user, anonymous for anonymous user. |