View Source ExCheckout (ex_checkout v1.5.2)

Documentation for ExCheckout.

Link to this section Summary

Functions

Returns the available shipping carriers.

Returns the the available payment processors.

Returns the name and module tuple.

Returns the name and module tuple.

Start a Checkout.

Link to this section Functions

Returns the available shipping carriers.

iex> ExCheckout.available_carriers()
[]
Link to this function

available_payment_processors()

View Source

Returns the the available payment processors.

iex> ExCheckout.available_payment_processors()
[]

Returns the name and module tuple.

iex> ExCheckout.get_shipping_modules()
[]
Link to this function

get_transaction_modules()

View Source

Returns the name and module tuple.

iex> ExCheckout.get_transaction_modules()
[]

Start a Checkout.

examples

Examples

iex>  {status, _} = ExCheckout.new()
iex>  status == :ok
true