SDKs code references for Unity
Easily embed Xsolla services with this ready-to-use libraries for Unity applications and games
All Classes Namespaces Functions Variables Enumerations Enumerator Pages
Xsolla.Cart.XsollaCart Class Reference

Static Public Member Functions

static void GetCartItems (Action< Cart > onSuccess, Action< Error > onError, string cartId=null, string locale=null, string currency=null)
 Returns a list of items from the cart with the specified ID or from the cart of the current user. For each item, complete data is returned. More...
 
static void FillCart (List< CartFillItem > items, Action onSuccess, Action< Error > onError, string cartId=null)
 Fills the cart with the specified ID or the cart of the current user with items. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value. More...
 
static void UpdateItemInCart (string itemSku, int quantity, Action onSuccess, Action< Error > onError, string cartId=null)
 Updates the quantity of a previously added item in the cart with the specified ID or in the current user cart. If there is no item with the specified SKU in the cart, it will be added. More...
 
static void RemoveItemFromCart (string itemSku, Action onSuccess, Action< Error > onError, string cartId=null)
 Removes the item from the cart with the specified ID or from the cart of the current user. More...
 
static void ClearCart (Action onSuccess, Action< Error > onError, string cartId=null)
 Removes all items from the cart with the specified ID or from the cart of the current user. More...
 
static void RedeemPromocode (string promocode, string cartId, Action< Cart > onSuccess, Action< Error > onError)
 Redeems a promo code. After activating the promo code, the user gets free items and/or the price of the cart is reduced. More...
 
static void GetPromocodeReward (string promocode, Action< PromocodeReward > onSuccess, Action< Error > onError)
 Returns a list of items that can be credited to the user when the promo code is activated. Allows users to choose from several available items. More...
 
static void RemovePromocodeFromCart (string cartId, Action< RemovePromocodeFromCartResult > onSuccess, Action< Error > onError=null)
 Removes a promo code from a cart. After the promo code is removed, the total price of all items in the cart will be recalculated without bonuses and discounts provided by a promo code. More...
 
static void CreateOrder (Action< OrderData > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null)
 Creates an order with items from the cart with the specified ID. Returns the payment token and order ID. The created order will get a new order status. More...
 
static void CreateOrderWithFreeCart (Action< OrderId > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null)
 Create order with particular free cart. The created order will get a done order status. More...
 
static void Purchase (Action< OrderStatus > onSuccess, Action< Error > onError, string cartId=null, Action< BrowserCloseInfo > onBrowseClosed=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null, PlatformSpecificAppearance platformSpecificAppearance=null)
 Launches purchase process for the cart with the specified ID or for the cart of the current user. This method encapsulates methods for creating an order, opening a payment UI, and tracking the order status. More...
 
static void PurchaseFreeCart (Action< OrderStatus > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null)
 Launches purchase process for the free cart with the specified ID or for the free cart of the current user. This method encapsulates methods for creating an order and tracking the order status. More...
 

Member Function Documentation

◆ ClearCart()

static void Xsolla.Cart.XsollaCart.ClearCart ( Action  onSuccess,
Action< Error onError,
string  cartId = null 
)
inlinestatic

Removes all items from the cart with the specified ID or from the cart of the current user.

More about the use cases.

Parameters
onSuccessCalled after successful cart clearing.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.

◆ CreateOrder()

static void Xsolla.Cart.XsollaCart.CreateOrder ( Action< OrderData onSuccess,
Action< Error onError,
string  cartId = null,
PurchaseParams  purchaseParams = null,
Dictionary< string, string >  customHeaders = null 
)
inlinestatic

Creates an order with items from the cart with the specified ID. Returns the payment token and order ID. The created order will get a new order status.

More about the use cases.

Parameters
onSuccessCalled after the order was successfully created.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.
purchaseParamsPurchase parameters such as country, locale, currency, and quantity.
customHeadersCustom HTTP request headers.

◆ CreateOrderWithFreeCart()

static void Xsolla.Cart.XsollaCart.CreateOrderWithFreeCart ( Action< OrderId onSuccess,
Action< Error onError,
string  cartId = null,
PurchaseParams  purchaseParams = null,
Dictionary< string, string >  customHeaders = null 
)
inlinestatic

Create order with particular free cart. The created order will get a done order status.

More about the use cases.

Parameters
onSuccessCalled after server response.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.
purchaseParamsPurchase parameters such as country, locale, currency, and quantity.
customHeadersCustom HTTP request headers.

◆ FillCart()

static void Xsolla.Cart.XsollaCart.FillCart ( List< CartFillItem items,
Action  onSuccess,
Action< Error onError,
string  cartId = null 
)
inlinestatic

Fills the cart with the specified ID or the cart of the current user with items. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value.

More about the use cases.

Parameters
itemsItem for filling the cart. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value.
onSuccessCalled after cart is successfully filled.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.

◆ GetCartItems()

static void Xsolla.Cart.XsollaCart.GetCartItems ( Action< Cart onSuccess,
Action< Error onError,
string  cartId = null,
string  locale = null,
string  currency = null 
)
inlinestatic

Returns a list of items from the cart with the specified ID or from the cart of the current user. For each item, complete data is returned.

More about the use cases.

Parameters
onSuccessCalled after local cache of cart items was successfully updated.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.
localeDefines localization of item's text fields. Two-letter lowercase language code. Leave empty to use the default value.
currencyThe currency in which prices are displayed (USD by default). Three-letter currency code per ISO 4217. Check the documentation for detailed information about currencies supported by Xsolla.

◆ GetPromocodeReward()

static void Xsolla.Cart.XsollaCart.GetPromocodeReward ( string  promocode,
Action< PromocodeReward onSuccess,
Action< Error onError 
)
inlinestatic

Returns a list of items that can be credited to the user when the promo code is activated. Allows users to choose from several available items.

More about the use cases.

Parameters
promocodeUnique code of promocode. Contains letters and numbers.
onSuccessCalled after successfully receiving promocode rewards.
onErrorCalled after the request resulted with an error.

◆ Purchase()

static void Xsolla.Cart.XsollaCart.Purchase ( Action< OrderStatus onSuccess,
Action< Error onError,
string  cartId = null,
Action< BrowserCloseInfo onBrowseClosed = null,
PurchaseParams  purchaseParams = null,
Dictionary< string, string >  customHeaders = null,
PlatformSpecificAppearance  platformSpecificAppearance = null 
)
inlinestatic

Launches purchase process for the cart with the specified ID or for the cart of the current user. This method encapsulates methods for creating an order, opening a payment UI, and tracking the order status.

More about the use cases.

Parameters
onSuccessCalled after the order transitions to the 'done' status.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.
onBrowseClosedCalled after the browser is closed. The event is tracked only when the payment UI is opened in the built-in browser. External browser events can't be tracked.
purchaseParamsPurchase parameters such as country, locale, and currency.
customHeadersCustom HTTP request headers.
platformSpecificAppearanceAdditional settings of payment UI appearance for different platforms.

◆ PurchaseFreeCart()

static void Xsolla.Cart.XsollaCart.PurchaseFreeCart ( Action< OrderStatus onSuccess,
Action< Error onError,
string  cartId = null,
PurchaseParams  purchaseParams = null,
Dictionary< string, string >  customHeaders = null 
)
inlinestatic

Launches purchase process for the free cart with the specified ID or for the free cart of the current user. This method encapsulates methods for creating an order and tracking the order status.

More about the use cases.

Parameters
onSuccessCalled after the order transitions to the 'done' status.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.
purchaseParamsPurchase parameters such as country, locale, and currency.
customHeadersCustom HTTP request headers.

◆ RedeemPromocode()

static void Xsolla.Cart.XsollaCart.RedeemPromocode ( string  promocode,
string  cartId,
Action< Cart onSuccess,
Action< Error onError 
)
inlinestatic

Redeems a promo code. After activating the promo code, the user gets free items and/or the price of the cart is reduced.

More about the use cases.

Parameters
promocodeUnique code of promocode. Contains letters and numbers.
cartIdUnique cart identifier. The current user cart will be updated if empty.
onSuccessCalled after successful promocode redemption.
onErrorCalled after the request resulted with an error.

◆ RemoveItemFromCart()

static void Xsolla.Cart.XsollaCart.RemoveItemFromCart ( string  itemSku,
Action  onSuccess,
Action< Error onError,
string  cartId = null 
)
inlinestatic

Removes the item from the cart with the specified ID or from the cart of the current user.

More about the use cases.

Parameters
itemSkuItem SKU to delete.
onSuccessCalled after successfully removing an item from the cart.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.

◆ RemovePromocodeFromCart()

static void Xsolla.Cart.XsollaCart.RemovePromocodeFromCart ( string  cartId,
Action< RemovePromocodeFromCartResult onSuccess,
Action< Error onError = null 
)
inlinestatic

Removes a promo code from a cart. After the promo code is removed, the total price of all items in the cart will be recalculated without bonuses and discounts provided by a promo code.

More about the use cases.

Parameters
cartIdCart ID. The current user cart will be updated if empty.
onSuccessCalled after the promo code has been successful removed from cart.
onErrorCalled after the request resulted with an error.

◆ UpdateItemInCart()

static void Xsolla.Cart.XsollaCart.UpdateItemInCart ( string  itemSku,
int  quantity,
Action  onSuccess,
Action< Error onError,
string  cartId = null 
)
inlinestatic

Updates the quantity of a previously added item in the cart with the specified ID or in the current user cart. If there is no item with the specified SKU in the cart, it will be added.

More about the use cases.

Parameters
itemSkuSKU of item for purchase.
quantityQuantity of purchased items.
onSuccessCalled after successfully adding a new item to the cart.
onErrorCalled after the request resulted with an error.
cartIdUnique cart identifier.

The documentation for this class was generated from the following file: