ExShopify v0.2.0 ExShopify.AbandonedCheckout
A checkout where acustomer has entered their billing & shipping info, but has yet to complete the purchase.
Summary
Types
abandoned_checkout_plural()
abandoned_checkout_plural() :: {:ok, [%ExShopify.AbandonedCheckout{abandoned_checkout_url: term, billing_address: term, buyer_accepts_marketing: term, cancel_reason: term, cart_token: term, closed_at: term, completed_at: term, created_at: term, currency: term, customer: term, discount_codes: term, email: term, gateway: term, id: term, landing_site: term, line_items: term, note: term, referring_site: term, shipping_address: term, shipping_lines: term, source_name: term, subtotal_price: term, tax_lines: term, taxes_included: term, token: term, total_discounts: term, total_line_items_price: term, total_price: term, total_tax: term, total_weight: term, updated_at: term}], %ExShopify.Meta{api_call_limit: term}}
Functions
count(session)
count(%ExShopify.Session{access_token: term, api_key: term, domain: term, port: term, protocol: term, secret: term, shop_name: term, shop_url: term}) :: ExShopify.Resource.count | ExShopify.Resource.error
count(session, params)
count(%ExShopify.Session{access_token: term, api_key: term, domain: term, port: term, protocol: term, secret: term, shop_name: term, shop_url: term}, map) :: ExShopify.Resource.count | ExShopify.Resource.error
Get a count of checkouts.
Examples
iex> ExShopify.AbandonedCheckout.count(session)
{:ok, count, meta}
list(session)
list(%ExShopify.Session{access_token: term, api_key: term, domain: term, port: term, protocol: term, secret: term, shop_name: term, shop_url: term}) :: abandoned_checkout_plural | ExShopify.Resource.error
list(session, params)
list(%ExShopify.Session{access_token: term, api_key: term, domain: term, port: term, protocol: term, secret: term, shop_name: term, shop_url: term}, map) :: abandoned_checkout_plural | ExShopify.Resource.error
Retrieve a list of checkouts.
Examples
iex> ExShopify.AbandonedCheckout.list(session)
{:ok, checkouts, meta}