Billcom v0.1.1 Billcom.BillPay View Source
Link to this section Summary
Functions
Billcom.BillPay.create/2
for bill.com api
Billcom.BillPay.delete/2
for bill.com api
Billcom.BillPay.list/2
for bill.com api
Billcom.BillPay.read/2
for bill.com api
Billcom.BillPay.undelete/2
for bill.com api
Billcom.BillPay.update/2
for bill.com api
Link to this section Functions
Specs
Billcom.BillPay.create/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Returned data
from create for BillPay
failure:
{:error, val}
Where val
hold information about failure reason.
Specs
Billcom.BillPay.delete/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Returned data
from delete for BillPay
failure:
{:error, val}
Where val
hold information about failure reason.
Specs
Billcom.BillPay.list/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Where data
is a collection of BillPay object list
failure:
{:error, val}
Where val
hold information about failure reason.
Specs
Billcom.BillPay.read/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Returned data
from read for BillPay
failure:
{:error, val}
Where val
hold information about failure reason.
Specs
Billcom.BillPay.undelete/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Returned data
from undelete for BillPay
failure:
{:error, val}
Where val
hold information about failure reason.
Specs
Billcom.BillPay.update/2
for bill.com api
Parameters:
- conn: a connection strucure (see
Billcom.login!/0
) - data: data object to send for the object
return:
success:
{:ok, data}
Returned data
from update for BillPay
failure:
{:error, val}
Where val
hold information about failure reason.