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()
[]
Returns the the available payment processors.
iex> ExCheckout.available_payment_processors()
[]
Returns the name and module tuple.
iex> ExCheckout.get_shipping_modules()
[]
Returns the name and module tuple.
iex> ExCheckout.get_transaction_modules()
[]
Start a Checkout.
examples
Examples
iex> {status, _} = ExCheckout.new()
iex> status == :ok
true